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 --- .../migrations/0380-cleanup-timestamps.ts | 29 ---------------------- 1 file changed, 29 deletions(-) delete mode 100644 server/initializers/migrations/0380-cleanup-timestamps.ts (limited to 'server/initializers/migrations/0380-cleanup-timestamps.ts') diff --git a/server/initializers/migrations/0380-cleanup-timestamps.ts b/server/initializers/migrations/0380-cleanup-timestamps.ts deleted file mode 100644 index 18ecfb997..000000000 --- a/server/initializers/migrations/0380-cleanup-timestamps.ts +++ /dev/null @@ -1,29 +0,0 @@ -import * as Sequelize from 'sequelize' - -async function up (utils: { - transaction: Sequelize.Transaction - queryInterface: Sequelize.QueryInterface - sequelize: Sequelize.Sequelize - db: any -}): Promise { - try { - await utils.queryInterface.removeColumn('application', 'createdAt') - } catch { /* the column could not exist */ } - - try { - await utils.queryInterface.removeColumn('application', 'updatedAt') - } catch { /* the column could not exist */ } - - try { - await utils.queryInterface.removeColumn('videoView', 'updatedAt') - } catch { /* the column could not exist */ } -} - -function down (options) { - throw new Error('Not implemented.') -} - -export { - up, - down -} -- cgit v1.2.3