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