competition_point_rank.js
1012 字节
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
module.exports = function (sequelize, DataTypes) {
return sequelize.define('competition_point_rank', {
season_id: {
type: DataTypes.INTEGER(11),
allowNull: false,
primaryKey: true
},
competition_id: {
type: DataTypes.INTEGER(11),
allowNull: false,
primaryKey: true
},
stage_id: {
type: DataTypes.INTEGER(11),
allowNull: false,
primaryKey: true
},
promotions: {
type: DataTypes.JSON,
allowNull: true
},
team_point: {
type: DataTypes.JSON,
allowNull: true
},
created_at: {
type: DataTypes.STRING(20),
allowNull: true
},
updated_at: {
type: DataTypes.STRING(20),
allowNull: true
}
}, {
tableName: 'competition_point_rank'
});
};
//# sourceMappingURL=competition_point_rank.js.map