diff options
Diffstat (limited to 'server/initializers')
-rw-r--r-- | server/initializers/constants.ts | 8 | ||||
-rw-r--r-- | server/initializers/migrations/0480-caption-file-url.ts | 27 |
2 files changed, 32 insertions, 3 deletions
diff --git a/server/initializers/constants.ts b/server/initializers/constants.ts index 64803b1db..3a9946bba 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 = 475 | 17 | const LAST_MIGRATION_VERSION = 480 |
18 | 18 | ||
19 | // --------------------------------------------------------------------------- | 19 | // --------------------------------------------------------------------------- |
20 | 20 | ||
@@ -541,11 +541,13 @@ let STATIC_MAX_AGE = { | |||
541 | // Videos thumbnail size | 541 | // Videos thumbnail size |
542 | const THUMBNAILS_SIZE = { | 542 | const THUMBNAILS_SIZE = { |
543 | width: 223, | 543 | width: 223, |
544 | height: 122 | 544 | height: 122, |
545 | minWidth: 150 | ||
545 | } | 546 | } |
546 | const PREVIEWS_SIZE = { | 547 | const PREVIEWS_SIZE = { |
547 | width: 850, | 548 | width: 850, |
548 | height: 480 | 549 | height: 480, |
550 | minWidth: 400 | ||
549 | } | 551 | } |
550 | const AVATARS_SIZE = { | 552 | const AVATARS_SIZE = { |
551 | width: 120, | 553 | width: 120, |
diff --git a/server/initializers/migrations/0480-caption-file-url.ts b/server/initializers/migrations/0480-caption-file-url.ts new file mode 100644 index 000000000..7d8a3d4b9 --- /dev/null +++ b/server/initializers/migrations/0480-caption-file-url.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.STRING, | ||
12 | allowNull: true, | ||
13 | defaultValue: null | ||
14 | } | ||
15 | |||
16 | await utils.queryInterface.addColumn('videoCaption', 'fileUrl', data) | ||
17 | } | ||
18 | } | ||
19 | |||
20 | function down (options) { | ||
21 | throw new Error('Not implemented.') | ||
22 | } | ||
23 | |||
24 | export { | ||
25 | up, | ||
26 | down | ||
27 | } | ||