diff options
Diffstat (limited to 'server')
-rw-r--r-- | server/initializers/constants.ts | 2 | ||||
-rw-r--r-- | server/initializers/migrations/0680-files-storage-default.ts | 20 |
2 files changed, 21 insertions, 1 deletions
diff --git a/server/initializers/constants.ts b/server/initializers/constants.ts index f66e6b65d..1c47d43f0 100644 --- a/server/initializers/constants.ts +++ b/server/initializers/constants.ts | |||
@@ -24,7 +24,7 @@ import { CONFIG, registerConfigChangedHandler } from './config' | |||
24 | 24 | ||
25 | // --------------------------------------------------------------------------- | 25 | // --------------------------------------------------------------------------- |
26 | 26 | ||
27 | const LAST_MIGRATION_VERSION = 675 | 27 | const LAST_MIGRATION_VERSION = 680 |
28 | 28 | ||
29 | // --------------------------------------------------------------------------- | 29 | // --------------------------------------------------------------------------- |
30 | 30 | ||
diff --git a/server/initializers/migrations/0680-files-storage-default.ts b/server/initializers/migrations/0680-files-storage-default.ts new file mode 100644 index 000000000..087bc8790 --- /dev/null +++ b/server/initializers/migrations/0680-files-storage-default.ts | |||
@@ -0,0 +1,20 @@ | |||
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('ALTER TABLE "videoFile" ALTER COLUMN "storage" SET DEFAULT 0') | ||
10 | await utils.sequelize.query('ALTER TABLE "videoStreamingPlaylist" ALTER COLUMN "storage" SET DEFAULT 0') | ||
11 | } | ||
12 | |||
13 | function down (options) { | ||
14 | throw new Error('Not implemented.') | ||
15 | } | ||
16 | |||
17 | export { | ||
18 | up, | ||
19 | down | ||
20 | } | ||