ms_app_log.js
1.4 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
module.exports = function (sequelize, DataTypes) {
return sequelize.define('ms_app_log', {
id: {
type: DataTypes.BIGINT,
allowNull: false,
primaryKey: true,
autoIncrement: true
},
created_at: {
type: DataTypes.DATE,
allowNull: true
},
app_code: {
type: DataTypes.STRING(50),
allowNull: true
},
log_level: {
type: DataTypes.STRING(50),
allowNull: true
},
user_id: {
type: DataTypes.BIGINT,
allowNull: true
},
user_name: {
type: DataTypes.STRING(50),
allowNull: true
},
log_message: {
type: DataTypes.TEXT,
allowNull: true
},
log_data: {
type: DataTypes.TEXT,
allowNull: true
},
ip: {
type: DataTypes.STRING(50),
allowNull: true
},
header: {
type: DataTypes.STRING(50),
allowNull: true
},
app_version: {
type: DataTypes.JSON,
allowNull: true
},
log_path: {
type: DataTypes.STRING(50),
allowNull: true
}
}, {
tableName: 'ms_app_log'
});
};
//# sourceMappingURL=ms_app_log.js.map