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/initializers/migrations | |
parent | 736c64ca4bbe6d53241f0a4f805dc81faea49969 (diff) | |
download | PeerTube-f2e31d589c900c0c79e74b8eb29a98384d9e6fc0.tar.gz PeerTube-f2e31d589c900c0c79e74b8eb29a98384d9e6fc0.tar.zst PeerTube-f2e31d589c900c0c79e74b8eb29a98384d9e6fc0.zip |
Fix pending job table migration
Diffstat (limited to 'server/initializers/migrations')
-rw-r--r-- | server/initializers/migrations/0670-pending-job-default.ts | 27 |
1 files changed, 27 insertions, 0 deletions
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 | } | ||