From 93b278e86c81f3fd865601b1500b535c928511bc Mon Sep 17 00:00:00 2001
From: loicbersier <loic.bersier1@gmail.com>
Date: Sat, 16 Jan 2021 09:03:34 +0100
Subject: [PATCH] forgot to add ytpblacklist migration file

Signed-off-by: loicbersier <loic.bersier1@gmail.com>
---
 .../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 0000000..017905c
--- /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