var mongoose = require('mongoose');
var Schema = mongoose.Schema;
var slug = require('mongoose-slug-generator');
mongoose.plugin(slug);
const pageSchema = new Schema({
title: { type: String , required: true},
slug: { type: String, slug: "title" }
});
var Page = mongoose.model('Page', pageSchema);
module.exports = Page;
Preview:
downloadDownload PNG
downloadDownload JPEG
downloadDownload SVG
Tip: You can change the style, width & colours of the snippet with the inspect tool before clicking Download!
Click to optimize width for Twitter