diff options
author | Chocobozzz <me@florianbigard.com> | 2021-08-30 16:28:36 +0200 |
---|---|---|
committer | Chocobozzz <me@florianbigard.com> | 2021-08-30 16:28:36 +0200 |
commit | f2e31d589c900c0c79e74b8eb29a98384d9e6fc0 (patch) | |
tree | eaf2ace3695e2ce26c1fd0dd99cfdb686822faef /server | |
parent | 736c64ca4bbe6d53241f0a4f805dc81faea49969 (diff) | |
download | PeerTube-f2e31d589c900c0c79e74b8eb29a98384d9e6fc0.tar.gz PeerTube-f2e31d589c900c0c79e74b8eb29a98384d9e6fc0.tar.zst PeerTube-f2e31d589c900c0c79e74b8eb29a98384d9e6fc0.zip |
Fix pending job table migration
Diffstat (limited to 'server')
-rw-r--r-- | server/initializers/constants.ts | 2 | ||||
-rw-r--r-- | server/initializers/migrations/0670-pending-job-default.ts | 27 |
2 files changed, 28 insertions, 1 deletions
diff --git a/server/initializers/constants.ts b/server/initializers/constants.ts index 2d8087f46..5395f744c 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 = 665 | 27 | const LAST_MIGRATION_VERSION = 670 |
28 | 28 | ||
29 | // --------------------------------------------------------------------------- | 29 | // --------------------------------------------------------------------------- |
30 | 30 | ||
diff --git a/server/initializers/migrations/0670-pending-job-default.ts b/server/initializers/migrations/0670-pending-job-default.ts new file mode 100644 index 000000000..7e9def1a0 --- /dev/null +++ b/server/initializers/migrations/0670-pending-job-default.ts | |||
@@ -0,0 +1,27 @@ | |||
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 | for (const column of [ 'pendingMove', 'pendingTranscode' ]) { | ||
10 | const data = { | ||
11 | type: Sequelize.INTEGER, | ||
12 | allowNull: false, | ||
13 | defaultValue: 0 | ||
14 | } | ||
15 | |||
16 | await utils.queryInterface.changeColumn('videoJobInfo', column, data) | ||
17 | } | ||
18 | } | ||
19 | |||
20 | function down (options) { | ||
21 | throw new Error('Not implemented.') | ||
22 | } | ||
23 | |||
24 | export { | ||
25 | up, | ||
26 | down | ||
27 | } | ||