Render card stacks on drops Unclaimed cards are hidden, when expired they are shown as grayscale
23 lines
433 B
JavaScript
23 lines
433 B
JavaScript
'use strict';
|
|
|
|
module.exports = {
|
|
async up (queryInterface, Sequelize) {
|
|
await queryInterface.bulkInsert('Users', [{
|
|
id: 1,
|
|
discordId: '123456789',
|
|
active: false,
|
|
privacy: 0,
|
|
createdAt: new Date(),
|
|
updatedAt: new Date()
|
|
}]);
|
|
},
|
|
|
|
async down (queryInterface, Sequelize) {
|
|
await queryInterface.delete('Users', {
|
|
where : {
|
|
discordId: '123456789'
|
|
}
|
|
});
|
|
}
|
|
};
|