Files
wikijs-fork/server/models_old/comment.js
2018-05-19 16:40:07 -04:00

17 lines
275 B
JavaScript

/**
* Comment schema
*/
module.exports = (sequelize, DataTypes) => {
let commentSchema = sequelize.define('comment', {
content: {
type: DataTypes.STRING,
allowNull: false
}
}, {
timestamps: true,
version: true
})
return commentSchema
}