Haha-Yes/migrations/20210116075646-create-ytpblacklist.js
loicbersier 93b278e86c forgot to add ytpblacklist migration file
Signed-off-by: loicbersier <loic.bersier1@gmail.com>
2021-01-16 09:03:34 +01:00

30 lines
No EOL
654 B
JavaScript

'use strict';
module.exports = {
up: (queryInterface, Sequelize) => {
return queryInterface.createTable('ytpblacklists', {
id: {
allowNull: false,
autoIncrement: true,
primaryKey: true,
type: Sequelize.INTEGER
},
userID: {
type: Sequelize.BIGINT
},
reason: {
type: Sequelize.STRING
},
createdAt: {
allowNull: false,
type: Sequelize.DATE
},
updatedAt: {
allowNull: false,
type: Sequelize.DATE
}
});
},
down: (queryInterface, Sequelize) => {
return queryInterface.dropTable('ytpblacklists');
}
};