diff options
author | Chocobozzz <me@florianbigard.com> | 2020-07-07 14:34:16 +0200 |
---|---|---|
committer | Chocobozzz <chocobozzz@cpy.re> | 2020-07-10 14:02:41 +0200 |
commit | 4f32032fed8587ea97d45e235b167e8958efd81f (patch) | |
tree | 6ec4ce2d5d05a275fb7eeaf3aee33c2b69ebc043 /server/initializers/migrations/0470-cleanup-indexes.ts | |
parent | 57f6896f67cfc570cf3605dd94b0778101b2d9b9 (diff) | |
download | PeerTube-4f32032fed8587ea97d45e235b167e8958efd81f.tar.gz PeerTube-4f32032fed8587ea97d45e235b167e8958efd81f.tar.zst PeerTube-4f32032fed8587ea97d45e235b167e8958efd81f.zip |
Add migrations
Diffstat (limited to 'server/initializers/migrations/0470-cleanup-indexes.ts')
-rw-r--r-- | server/initializers/migrations/0470-cleanup-indexes.ts | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/server/initializers/migrations/0470-cleanup-indexes.ts b/server/initializers/migrations/0470-cleanup-indexes.ts new file mode 100644 index 000000000..7365c30f8 --- /dev/null +++ b/server/initializers/migrations/0470-cleanup-indexes.ts | |||
@@ -0,0 +1,22 @@ | |||
1 | import * as Sequelize from 'sequelize' | ||
2 | |||
3 | async function up (utils: { | ||
4 | transaction: Sequelize.Transaction | ||
5 | queryInterface: Sequelize.QueryInterface | ||
6 | sequelize: Sequelize.Sequelize | ||
7 | db: any | ||
8 | }): Promise<void> { | ||
9 | await utils.sequelize.query('DROP INDEX IF EXISTS video_share_account_id;') | ||
10 | await utils.sequelize.query('DROP INDEX IF EXISTS video_published_at;') | ||
11 | |||
12 | await utils.sequelize.query('ALTER TABLE "avatar" DROP COLUMN IF EXISTS "avatarId"') | ||
13 | } | ||
14 | |||
15 | function down (options) { | ||
16 | throw new Error('Not implemented.') | ||
17 | } | ||
18 | |||
19 | export { | ||
20 | up, | ||
21 | down | ||
22 | } | ||