History: Add currency and XP tracking
This commit is contained in:
39
migrations/20220921145901-create-currency-history.js
Normal file
39
migrations/20220921145901-create-currency-history.js
Normal file
@@ -0,0 +1,39 @@
|
||||
'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');
|
||||
}
|
||||
};
|
||||
Reference in New Issue
Block a user