Files
toho-miku/migrations/20220914123743-create-record-history.js

42 lines
888 B
JavaScript

'use strict';
module.exports = {
async up(queryInterface, Sequelize) {
await queryInterface.createTable('RecordHistories', {
id: {
allowNull: false,
autoIncrement: true,
primaryKey: true,
type: Sequelize.INTEGER
},
affectedId: {
type: Sequelize.INTEGER
},
userId: {
type: Sequelize.INTEGER
},
type: {
type: Sequelize.STRING
},
property: {
type: Sequelize.STRING
},
newValue: {
type: Sequelize.TEXT
},
oldValue: {
type: Sequelize.TEXT
},
createdAt: {
allowNull: false,
type: Sequelize.DATE
},
updatedAt: {
allowNull: false,
type: Sequelize.DATE
}
});
},
async down(queryInterface, Sequelize) {
await queryInterface.dropTable('RecordHistories');
}
};