diff options
Diffstat (limited to 'server/initializers/migrations/0275-video-file-unique.ts')
-rw-r--r-- | server/initializers/migrations/0275-video-file-unique.ts | 34 |
1 files changed, 34 insertions, 0 deletions
diff --git a/server/initializers/migrations/0275-video-file-unique.ts b/server/initializers/migrations/0275-video-file-unique.ts new file mode 100644 index 000000000..fd89188c0 --- /dev/null +++ b/server/initializers/migrations/0275-video-file-unique.ts | |||
@@ -0,0 +1,34 @@ | |||
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 | }): Promise<any> { | ||
8 | { | ||
9 | const query = 'DELETE FROM "videoFile" vf1 USING "videoFile" vf2 WHERE vf1.id < vf2.id ' + | ||
10 | 'AND vf1."videoId" = vf2."videoId" AND vf1.resolution = vf2.resolution AND vf1.fps IS NULL' | ||
11 | await utils.sequelize.query(query) | ||
12 | } | ||
13 | |||
14 | { | ||
15 | const query = 'UPDATE "videoFile" SET fps = -1 WHERE fps IS NULL;' | ||
16 | await utils.sequelize.query(query) | ||
17 | } | ||
18 | |||
19 | { | ||
20 | const data = { | ||
21 | type: Sequelize.INTEGER, | ||
22 | allowNull: false, | ||
23 | defaultValue: -1 | ||
24 | } | ||
25 | await utils.queryInterface.changeColumn('videoFile', 'fps', data) | ||
26 | } | ||
27 | |||
28 | } | ||
29 | |||
30 | function down (options) { | ||
31 | throw new Error('Not implemented.') | ||
32 | } | ||
33 | |||
34 | export { up, down } | ||