diff options
author | Chocobozzz <me@florianbigard.com> | 2020-05-05 16:34:50 +0200 |
---|---|---|
committer | Chocobozzz <me@florianbigard.com> | 2020-05-05 16:34:50 +0200 |
commit | 4c576aca1cb8652d88f6673f1d870b53654058d5 (patch) | |
tree | 34dad244f168795616df9fe9e3c477ebebc003fc /server/initializers | |
parent | 1c3206736743646d41a667c03f3e499cc3e3373f (diff) | |
download | PeerTube-4c576aca1cb8652d88f6673f1d870b53654058d5.tar.gz PeerTube-4c576aca1cb8652d88f6673f1d870b53654058d5.tar.zst PeerTube-4c576aca1cb8652d88f6673f1d870b53654058d5.zip |
Fix playlist description length
Diffstat (limited to 'server/initializers')
-rw-r--r-- | server/initializers/constants.ts | 2 | ||||
-rw-r--r-- | server/initializers/migrations/0500-playlist-description-length.ts | 26 |
2 files changed, 27 insertions, 1 deletions
diff --git a/server/initializers/constants.ts b/server/initializers/constants.ts index 5ce8819ec..d583912fb 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 = 495 | 17 | const LAST_MIGRATION_VERSION = 500 |
18 | 18 | ||
19 | // --------------------------------------------------------------------------- | 19 | // --------------------------------------------------------------------------- |
20 | 20 | ||
diff --git a/server/initializers/migrations/0500-playlist-description-length.ts b/server/initializers/migrations/0500-playlist-description-length.ts new file mode 100644 index 000000000..f47f3d96a --- /dev/null +++ b/server/initializers/migrations/0500-playlist-description-length.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 | { | ||
10 | const description = { | ||
11 | type: Sequelize.STRING(1000), | ||
12 | allowNull: true | ||
13 | } | ||
14 | await utils.queryInterface.changeColumn('videoPlaylist', 'description', description) | ||
15 | } | ||
16 | |||
17 | } | ||
18 | |||
19 | function down (options) { | ||
20 | throw new Error('Not implemented.') | ||
21 | } | ||
22 | |||
23 | export { | ||
24 | up, | ||
25 | down | ||
26 | } | ||