Commit 42c1eadf authored by 陈家荣's avatar 陈家荣

111

parent fbac4ee7
'use strict';
var mongoose = require('mongoose'),
Schema = mongoose.Schema;
//社区行为限制字典表
var ForumLimitActionConfigSchema = new Schema({
name: {
type: String,
require: true
},
code: {
type: String,
require: true
}
}, {
'collection': 'pisns_forum_limit_action_config'
});
module.exports = mongoose.model('ForumLimitActionConfig', ForumLimitActionConfigSchema);
\ No newline at end of file
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment