diff options
author | Chocobozzz <me@florianbigard.com> | 2018-01-05 14:51:05 +0100 |
---|---|---|
committer | Chocobozzz <me@florianbigard.com> | 2018-01-05 14:51:05 +0100 |
commit | d6aaab28f7606be519935de0d21fb76c0c1a937c (patch) | |
tree | 4eb587e8bda28c137ca9d7ad959d930ddbcf4fd7 /server/initializers/migrations | |
parent | 6b467fd54e58edb77dade400380581485a484434 (diff) | |
download | PeerTube-d6aaab28f7606be519935de0d21fb76c0c1a937c.tar.gz PeerTube-d6aaab28f7606be519935de0d21fb76c0c1a937c.tar.zst PeerTube-d6aaab28f7606be519935de0d21fb76c0c1a937c.zip |
Remove :443 from video urls too
Diffstat (limited to 'server/initializers/migrations')
-rw-r--r-- | server/initializers/migrations/0165-video-route.ts | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/server/initializers/migrations/0165-video-route.ts b/server/initializers/migrations/0165-video-route.ts new file mode 100644 index 000000000..56d98bc69 --- /dev/null +++ b/server/initializers/migrations/0165-video-route.ts | |||
@@ -0,0 +1,25 @@ | |||
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 toReplace = ':443' | ||
10 | const by = '' | ||
11 | const replacer = column => `replace("${column}", '${toReplace}', '${by}')` | ||
12 | |||
13 | const query = `UPDATE video SET url = ${replacer('url')}` | ||
14 | await utils.sequelize.query(query) | ||
15 | } | ||
16 | } | ||
17 | |||
18 | function down (options) { | ||
19 | throw new Error('Not implemented.') | ||
20 | } | ||
21 | |||
22 | export { | ||
23 | up, | ||
24 | down | ||
25 | } | ||