From 348c2ce3ff3fe2f25a31f08bfb36c88723a0ce46 Mon Sep 17 00:00:00 2001 From: Chocobozzz Date: Mon, 21 Mar 2022 14:54:29 +0100 Subject: Remove old migration files --- server/initializers/migrations/0120-video-null.ts | 45 ----------------------- 1 file changed, 45 deletions(-) delete mode 100644 server/initializers/migrations/0120-video-null.ts (limited to 'server/initializers/migrations/0120-video-null.ts') diff --git a/server/initializers/migrations/0120-video-null.ts b/server/initializers/migrations/0120-video-null.ts deleted file mode 100644 index 1b407b270..000000000 --- a/server/initializers/migrations/0120-video-null.ts +++ /dev/null @@ -1,45 +0,0 @@ -import * as Sequelize from 'sequelize' - -async function up (utils: { - transaction: Sequelize.Transaction - queryInterface: Sequelize.QueryInterface - sequelize: Sequelize.Sequelize - db: any -}): Promise { - - { - const data = { - type: Sequelize.INTEGER, - allowNull: true, - defaultValue: null - } - await utils.queryInterface.changeColumn('Videos', 'licence', data) - } - - { - const data = { - type: Sequelize.INTEGER, - allowNull: true, - defaultValue: null - } - await utils.queryInterface.changeColumn('Videos', 'category', data) - } - - { - const data = { - type: Sequelize.STRING(10000), - allowNull: true, - defaultValue: null - } - await utils.queryInterface.changeColumn('Videos', 'description', data) - } -} - -function down (options) { - throw new Error('Not implemented.') -} - -export { - up, - down -} -- cgit v1.2.3