VideoModels.js 269 Bytes Raw Blame History Permalink 1 2 3 4 5 6 7 8 9 10 11 12 var mongoose = require('mongoose'); var Schema = mongoose.Schema; var CommentsSchema = new Schema({ content: String, created_at: { type: Date, default: Date.now(), }, product_id: Number, }); module.exports = mongoose.model('comments', CommentsSchema);