column.js 566 B

12345678910111213141516171819
  1. 'use strict';
  2. const Schema = require('mongoose').Schema;
  3. const metaPlugin = require('naf-framework-mongoose/lib/model/meta-plugin');
  4. // 栏目表
  5. const ColumnSchema = {
  6. name: { type: String, required: true, maxLength: 500 }, // 栏目名称
  7. site: { type: String, required: false, maxLength: 500 }, // 栏目位置
  8. };
  9. const schema = new Schema(ColumnSchema, { toJSON: { virtuals: true } });
  10. schema.index({ id: 1 });
  11. schema.plugin(metaPlugin);
  12. module.exports = app => {
  13. const { mongoose } = app;
  14. return mongoose.model('Column', schema, 'serve_column');
  15. };