Files
toho-miku/migrations/20220921145901-create-currency-history.js

39 lines
837 B
JavaScript

'use strict';
module.exports = {
async up(queryInterface, Sequelize) {
await queryInterface.createTable('CurrencyHistories', {
id: {
allowNull: false,
autoIncrement: true,
primaryKey: true,
type: Sequelize.INTEGER
},
userId: {
type: Sequelize.INTEGER
},
currency: {
type: Sequelize.INTEGER
},
delta: {
type: Sequelize.INTEGER
},
previous: {
type: Sequelize.INTEGER
},
source: {
type: Sequelize.STRING
},
createdAt: {
allowNull: false,
type: Sequelize.DATE
},
updatedAt: {
allowNull: false,
type: Sequelize.DATE
}
});
},
async down(queryInterface, Sequelize) {
await queryInterface.dropTable('CurrencyHistories');
}
};