WIP Card rendering
Render card stacks on drops Unclaimed cards are hidden, when expired they are shown as grayscale
This commit is contained in:
22
seeders/20220820010713-unclaimed-card-user.js
Normal file
22
seeders/20220820010713-unclaimed-card-user.js
Normal file
@@ -0,0 +1,22 @@
|
||||
'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'
|
||||
}
|
||||
});
|
||||
}
|
||||
};
|
||||
Reference in New Issue
Block a user