UNPKG

generator-aristos

Version:

create aristos cms fast with yeoman generator.

14 lines (12 loc) 292 B
const mongoose = require("mongoose") /* Media Category Schema */ const MediaCategorySchema = new mongoose.Schema({ title:{ type: String, required: true }, slug:{ type: String } }) module.exports = mongoose.model("MediaCategory", MediaCategorySchema);