UNPKG

mcms-node-framework

Version:

the mcms-node framwork

12 lines (11 loc) 329 B
module.exports = function(sequelize, DataTypes) { return sequelize.define("Reflection", { messageId : DataTypes.STRING, type : DataTypes.STRING, value : DataTypes.STRING },{ timestamps : false, freezeTableName: true, tableName : 'message_reflections' }); };