nami_match_live.ts
538 字节
module.exports = function(sequelize:any, DataTypes:any) {
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'
});
};