nami_match_live.js
629 字节
module.exports = function (sequelize, DataTypes) {
return sequelize.define('nami_match_live', {
id: {
type: DataTypes.INTEGER(11),
allowNull: false,
primaryKey: true,
unique: true
},
created_at: {
type: DataTypes.DATE,
allowNull: true
},
updated_at: {
type: DataTypes.DATE,
allowNull: true
},
data: {
type: DataTypes.JSON,
allowNull: true
}
}, {
tableName: 'nami_match_live'
});
};
//# sourceMappingURL=nami_match_live.js.map