comment.js 275 B

12345678910111213141516
  1. /**
  2. * Comment schema
  3. */
  4. module.exports = (sequelize, DataTypes) => {
  5. let commentSchema = sequelize.define('comment', {
  6. content: {
  7. type: DataTypes.STRING,
  8. allowNull: false
  9. }
  10. }, {
  11. timestamps: true,
  12. version: true
  13. })
  14. return commentSchema
  15. }