diff options
author | Chocobozzz <me@florianbigard.com> | 2020-11-10 10:38:39 +0100 |
---|---|---|
committer | Chocobozzz <me@florianbigard.com> | 2020-11-10 10:45:20 +0100 |
commit | 998440b6ecc92b6c0206256dae807a3946ffcef1 (patch) | |
tree | 2f7e4ca579ef043b9c3627866a2fcbb36bb349dd /server | |
parent | 6d61da4e32487bdb1f1a84a7b2eddf2df0ddf1ca (diff) | |
download | PeerTube-998440b6ecc92b6c0206256dae807a3946ffcef1.tar.gz PeerTube-998440b6ecc92b6c0206256dae807a3946ffcef1.tar.zst PeerTube-998440b6ecc92b6c0206256dae807a3946ffcef1.zip |
Fix live migrations
Diffstat (limited to 'server')
-rw-r--r-- | server/initializers/constants.ts | 2 | ||||
-rw-r--r-- | server/initializers/migrations/0545-video-live-save-replay.ts | 26 |
2 files changed, 27 insertions, 1 deletions
diff --git a/server/initializers/constants.ts b/server/initializers/constants.ts index 2e45ab256..97fd1bdc1 100644 --- a/server/initializers/constants.ts +++ b/server/initializers/constants.ts | |||
@@ -23,7 +23,7 @@ import { CONFIG, registerConfigChangedHandler } from './config' | |||
23 | 23 | ||
24 | // --------------------------------------------------------------------------- | 24 | // --------------------------------------------------------------------------- |
25 | 25 | ||
26 | const LAST_MIGRATION_VERSION = 540 | 26 | const LAST_MIGRATION_VERSION = 545 |
27 | 27 | ||
28 | // --------------------------------------------------------------------------- | 28 | // --------------------------------------------------------------------------- |
29 | 29 | ||
diff --git a/server/initializers/migrations/0545-video-live-save-replay.ts b/server/initializers/migrations/0545-video-live-save-replay.ts new file mode 100644 index 000000000..b79a406a4 --- /dev/null +++ b/server/initializers/migrations/0545-video-live-save-replay.ts | |||
@@ -0,0 +1,26 @@ | |||
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<void> { | ||
8 | { | ||
9 | const data = { | ||
10 | type: Sequelize.BOOLEAN, | ||
11 | defaultValue: false, | ||
12 | allowNull: false | ||
13 | } | ||
14 | |||
15 | await utils.queryInterface.addColumn('videoLive', 'saveReplay', data) | ||
16 | } | ||
17 | } | ||
18 | |||
19 | function down (options) { | ||
20 | throw new Error('Not implemented.') | ||
21 | } | ||
22 | |||
23 | export { | ||
24 | up, | ||
25 | down | ||
26 | } | ||