From 93b278e86c81f3fd865601b1500b535c928511bc Mon Sep 17 00:00:00 2001 From: loicbersier Date: Sat, 16 Jan 2021 09:03:34 +0100 Subject: [PATCH] forgot to add ytpblacklist migration file Signed-off-by: loicbersier --- .../20210116075646-create-ytpblacklist.js | 30 +++++++++++++++++++ 1 file changed, 30 insertions(+) create mode 100644 migrations/20210116075646-create-ytpblacklist.js diff --git a/migrations/20210116075646-create-ytpblacklist.js b/migrations/20210116075646-create-ytpblacklist.js new file mode 100644 index 00000000..017905c4 --- /dev/null +++ b/migrations/20210116075646-create-ytpblacklist.js @@ -0,0 +1,30 @@ +'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'); + } +}; \ No newline at end of file