Files
toho-miku/seeders/20220820010713-unclaimed-card-user.js
Minzkraut 3f53e33598 WIP Card rendering
Render card stacks on drops
Unclaimed cards are hidden, when expired they are shown as grayscale
2022-08-20 03:35:36 +02:00

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'
}
});
}
};