1const mongoose = require('mongoose');
2const Schema = mongoose.Schema;
3
4const SampleSchema = new Schema({
5 title: String,
6 entries: [String]
7});
8
9module.exports = mongoose.model('Sample', SampleSchema);
Created on 7/1/2018
1const mongoose = require('mongoose');
2const Schema = mongoose.Schema;
3
4const SampleSchema = new Schema({
5 title: String,
6 entries: [String]
7});
8
9module.exports = mongoose.model('Sample', SampleSchema);
Created on 7/1/2018