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