ms_soccer_company.js
1.1 KB
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
39
40
41
module.exports = function (sequelize, DataTypes) {
return sequelize.define('ms_soccer_company', {
ms_company_id: {
type: DataTypes.INTEGER(11),
allowNull: false,
primaryKey: true,
autoIncrement: true
},
createdAt: {
type: DataTypes.DATE,
allowNull: true
},
updatedAt: {
type: DataTypes.DATE,
allowNull: true
},
info_company_id: {
type: DataTypes.BIGINT,
allowNull: true
},
sportdt_company_id: {
type: DataTypes.BIGINT,
allowNull: true
},
info_company_name: {
type: DataTypes.STRING(100),
allowNull: true
},
sportdt_company_name: {
type: DataTypes.STRING(100),
allowNull: true
},
info_company_type: {
type: DataTypes.INTEGER(11),
allowNull: true
}
}, {
tableName: 'ms_soccer_company'
});
};
//# sourceMappingURL=ms_soccer_company.js.map