diff options
author | Chocobozzz <me@florianbigard.com> | 2019-09-24 10:35:36 +0200 |
---|---|---|
committer | Chocobozzz <me@florianbigard.com> | 2019-09-24 10:35:36 +0200 |
commit | 85c1df6ae899be2b1bdd9691b38a2a2b94bffdcf (patch) | |
tree | 417368b50abdd3431101645455f8234752a33bde /server | |
parent | c1e5bd23d557976ba11f89c53a00c1657a7ea890 (diff) | |
download | PeerTube-85c1df6ae899be2b1bdd9691b38a2a2b94bffdcf.tar.gz PeerTube-85c1df6ae899be2b1bdd9691b38a2a2b94bffdcf.tar.zst PeerTube-85c1df6ae899be2b1bdd9691b38a2a2b94bffdcf.zip |
Add auto play next video migration
Diffstat (limited to 'server')
-rw-r--r-- | server/initializers/constants.ts | 2 | ||||
-rw-r--r-- | server/initializers/migrations/0440-user-auto-play-next-video.ts | 27 |
2 files changed, 28 insertions, 1 deletions
diff --git a/server/initializers/constants.ts b/server/initializers/constants.ts index be4a66488..332b57cf2 100644 --- a/server/initializers/constants.ts +++ b/server/initializers/constants.ts | |||
@@ -14,7 +14,7 @@ import { CONFIG, registerConfigChangedHandler } from './config' | |||
14 | 14 | ||
15 | // --------------------------------------------------------------------------- | 15 | // --------------------------------------------------------------------------- |
16 | 16 | ||
17 | const LAST_MIGRATION_VERSION = 435 | 17 | const LAST_MIGRATION_VERSION = 440 |
18 | 18 | ||
19 | // --------------------------------------------------------------------------- | 19 | // --------------------------------------------------------------------------- |
20 | 20 | ||
diff --git a/server/initializers/migrations/0440-user-auto-play-next-video.ts b/server/initializers/migrations/0440-user-auto-play-next-video.ts new file mode 100644 index 000000000..f0baafe7b --- /dev/null +++ b/server/initializers/migrations/0440-user-auto-play-next-video.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 | { | ||
10 | const data = { | ||
11 | type: Sequelize.BOOLEAN, | ||
12 | allowNull: false, | ||
13 | defaultValue: false | ||
14 | } | ||
15 | |||
16 | await utils.queryInterface.addColumn('user', 'autoPlayNextVideo', data) | ||
17 | } | ||
18 | } | ||
19 | |||
20 | function down (options) { | ||
21 | throw new Error('Not implemented.') | ||
22 | } | ||
23 | |||
24 | export { | ||
25 | up, | ||
26 | down | ||
27 | } | ||