diff options
author | Chocobozzz <me@florianbigard.com> | 2022-03-21 14:54:29 +0100 |
---|---|---|
committer | Chocobozzz <me@florianbigard.com> | 2022-03-21 14:54:29 +0100 |
commit | 348c2ce3ff3fe2f25a31f08bfb36c88723a0ce46 (patch) | |
tree | 972ec51091bab14e7671ef7db3b6e43ea5f116f7 /server/initializers/migrations/0140-actor-url.ts | |
parent | e6afb669402aead6bf3d9d7ba4f2bd434c831eab (diff) | |
download | PeerTube-348c2ce3ff3fe2f25a31f08bfb36c88723a0ce46.tar.gz PeerTube-348c2ce3ff3fe2f25a31f08bfb36c88723a0ce46.tar.zst PeerTube-348c2ce3ff3fe2f25a31f08bfb36c88723a0ce46.zip |
Remove old migration files
Diffstat (limited to 'server/initializers/migrations/0140-actor-url.ts')
-rw-r--r-- | server/initializers/migrations/0140-actor-url.ts | 40 |
1 files changed, 0 insertions, 40 deletions
diff --git a/server/initializers/migrations/0140-actor-url.ts b/server/initializers/migrations/0140-actor-url.ts deleted file mode 100644 index d790988ad..000000000 --- a/server/initializers/migrations/0140-actor-url.ts +++ /dev/null | |||
@@ -1,40 +0,0 @@ | |||
1 | import * as Sequelize from 'sequelize' | ||
2 | import { WEBSERVER } from '../constants' | ||
3 | |||
4 | async function up (utils: { | ||
5 | transaction: Sequelize.Transaction | ||
6 | queryInterface: Sequelize.QueryInterface | ||
7 | sequelize: Sequelize.Sequelize | ||
8 | }): Promise<void> { | ||
9 | const toReplace = WEBSERVER.HOSTNAME + ':443' | ||
10 | const by = WEBSERVER.HOST | ||
11 | const replacer = column => `replace("${column}", '${toReplace}', '${by}')` | ||
12 | |||
13 | { | ||
14 | const query = `UPDATE video SET url = ${replacer('url')}` | ||
15 | await utils.sequelize.query(query) | ||
16 | } | ||
17 | |||
18 | { | ||
19 | const query = ` | ||
20 | UPDATE actor SET url = ${replacer('url')}, "inboxUrl" = ${replacer('inboxUrl')}, "outboxUrl" = ${replacer('outboxUrl')}, | ||
21 | "sharedInboxUrl" = ${replacer('sharedInboxUrl')}, "followersUrl" = ${replacer('followersUrl')}, | ||
22 | "followingUrl" = ${replacer('followingUrl')} | ||
23 | ` | ||
24 | await utils.sequelize.query(query) | ||
25 | } | ||
26 | |||
27 | { | ||
28 | const query = `UPDATE server SET host = replace(host, ':443', '')` | ||
29 | await utils.sequelize.query(query) | ||
30 | } | ||
31 | } | ||
32 | |||
33 | function down (options) { | ||
34 | throw new Error('Not implemented.') | ||
35 | } | ||
36 | |||
37 | export { | ||
38 | up, | ||
39 | down | ||
40 | } | ||