blob: 3f341d12c421e8c5b2227b8f6378940f17b324d1 (
plain) (
tree)
|
|
const mongoose = require('mongoose');
const postSchema = new mongoose.Schema({
title: String,
text: String
});
const postModel = mongoose.model('post', postSchema);
module.exports = postModel;
|