diff options
author | Chocobozzz <me@florianbigard.com> | 2020-11-20 12:09:14 +0100 |
---|---|---|
committer | Chocobozzz <me@florianbigard.com> | 2020-11-20 12:09:14 +0100 |
commit | 4749078b8af8fdaf40dd35c9e2da7e681b9ea664 (patch) | |
tree | 4f16956f1895115f58a3dcca981e5c3ce9463794 /server | |
parent | 55d5fbc583f872b9890698322c5b03c62f371640 (diff) | |
download | PeerTube-4749078b8af8fdaf40dd35c9e2da7e681b9ea664.tar.gz PeerTube-4749078b8af8fdaf40dd35c9e2da7e681b9ea664.tar.zst PeerTube-4749078b8af8fdaf40dd35c9e2da7e681b9ea664.zip |
Add actor follow url migration
Diffstat (limited to 'server')
-rw-r--r-- | server/initializers/constants.ts | 2 | ||||
-rw-r--r-- | server/initializers/migrations/0555-actor-follow-url.ts | 26 |
2 files changed, 27 insertions, 1 deletions
diff --git a/server/initializers/constants.ts b/server/initializers/constants.ts index b33a62772..79e6a744c 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 = 550 | 27 | const LAST_MIGRATION_VERSION = 555 |
28 | 28 | ||
29 | // --------------------------------------------------------------------------- | 29 | // --------------------------------------------------------------------------- |
30 | 30 | ||
diff --git a/server/initializers/migrations/0555-actor-follow-url.ts b/server/initializers/migrations/0555-actor-follow-url.ts new file mode 100644 index 000000000..36431507f --- /dev/null +++ b/server/initializers/migrations/0555-actor-follow-url.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 | const data = { | ||
10 | type: Sequelize.STRING(2000), | ||
11 | defaultValue: null, | ||
12 | allowNull: true | ||
13 | } | ||
14 | |||
15 | await utils.queryInterface.addColumn('actorFollow', 'url', data) | ||
16 | } | ||
17 | } | ||
18 | |||
19 | function down (options) { | ||
20 | throw new Error('Not implemented.') | ||
21 | } | ||
22 | |||
23 | export { | ||
24 | up, | ||
25 | down | ||
26 | } | ||