20210609141319-log.js
882 Bytes
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
'use strict';
module.exports = {
up: async (queryInterface, Sequelize) => {
await queryInterface.createTable('Logs', {
id: {
allowNull: false,
autoIncrement: true,
primaryKey: true,
type: Sequelize.INTEGER
},
user: {
type: Sequelize.INTEGER
},
location: {
type: Sequelize.STRING(191),
},
module: {
type: Sequelize.STRING(191),
},
actionType: {
type: Sequelize.STRING(191)
},
data: {
type: Sequelize.JSON
},
ipAddress:{
type: Sequelize.STRING(191)
},
createdAt: {
allowNull: false,
type: Sequelize.DATE
}
},{
charset: 'utf8mb4',
collate: 'utf8mb4_unicode_ci'
})
},
down: async (queryInterface, Sequelize) => {
await queryInterface.dropTable('Logs');
}
};