Trade: Add tradehistories table
and create rows at the end of each trade. Both users traded cards are logged.
This commit is contained in:
36
migrations/20230112132055-create-trade-histories.js
Normal file
36
migrations/20230112132055-create-trade-histories.js
Normal file
@@ -0,0 +1,36 @@
|
||||
'use strict';
|
||||
module.exports = {
|
||||
async up(queryInterface, Sequelize) {
|
||||
await queryInterface.createTable('TradeHistories', {
|
||||
id: {
|
||||
allowNull: false,
|
||||
autoIncrement: true,
|
||||
primaryKey: true,
|
||||
type: Sequelize.INTEGER
|
||||
},
|
||||
userAId: {
|
||||
type: Sequelize.INTEGER
|
||||
},
|
||||
userBId: {
|
||||
type: Sequelize.INTEGER
|
||||
},
|
||||
userATraded: {
|
||||
type: Sequelize.JSON
|
||||
},
|
||||
userBTraded: {
|
||||
type: Sequelize.JSON
|
||||
},
|
||||
createdAt: {
|
||||
allowNull: false,
|
||||
type: Sequelize.DATE
|
||||
},
|
||||
updatedAt: {
|
||||
allowNull: false,
|
||||
type: Sequelize.DATE
|
||||
}
|
||||
});
|
||||
},
|
||||
async down(queryInterface, Sequelize) {
|
||||
await queryInterface.dropTable('TradeHistories');
|
||||
}
|
||||
};
|
||||
Reference in New Issue
Block a user