transfer_teams.ts
2.0 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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
/* jshint indent: 2 */
import * as moment from 'moment';
module.exports = function(sequelize:any, DataTypes:any) {
return sequelize.define('transfer_teams', {
id: {
type: DataTypes.BIGINT,
allowNull: false,
primaryKey: true,
autoIncrement: true
},
team_id: {
type: DataTypes.BIGINT,
allowNull: false
},
name: {
type: DataTypes.STRING(100),
allowNull: true
},
link: {
type: DataTypes.STRING(255),
allowNull: true
},
competition_id: {
type: DataTypes.STRING(50),
allowNull: false
},
created_at: {
type: DataTypes.BIGINT,
allowNull: true,
get(){
return moment(this.getDataValue('created_at')).format('YYYY-MM-DD HH:mm:ss');
}
},
updated_at: {
type: DataTypes.BIGINT,
allowNull: true,
get(){
return moment(this.getDataValue('updated_at')).format('YYYY-MM-DD HH:mm:ss');
}
},
ms_soccer_team_id: {
type: DataTypes.INTEGER(11),
allowNull: true
},
update_time: {
type: DataTypes.DATE,
allowNull: true,
defaultValue: sequelize.literal('CURRENT_TIMESTAMP')
},
average_age: {
type: DataTypes.STRING(30),
allowNull: true
},
current_transfer_record: {
type: DataTypes.STRING(30),
allowNull: true
},
data_erfolge: {
type: DataTypes.JSON,
allowNull: true
},
foreigners: {
type: DataTypes.JSON,
allowNull: true
},
national_team_players: {
type: DataTypes.STRING(20),
allowNull: true
},
squad_size: {
type: DataTypes.STRING(20),
allowNull: true
},
stadium: {
type: DataTypes.JSON,
allowNull: true
},
total_market_value: {
type: DataTypes.STRING(50),
allowNull: true
},
update_flag: {
type: DataTypes.INTEGER(11),
allowNull: true,
defaultValue: '0'
}
}, {
tableName: 'transfer_teams'
});
};