team_stats.ts
457 字节
module.exports = function(sequelize:any, DataTypes:any) {
return sequelize.define('team_stats', {
id: {
type: DataTypes.INTEGER,
allowNull: false,
primaryKey: true,
comment: "比赛id"
},
stats: {
type: DataTypes.JSON,
allowNull: true,
comment: "比赛球队统计数据"
},
created_at: {
type: DataTypes.DATE,
allowNull: true
}
});
};