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/initializers/migrations/0555-actor-follow-url.ts | |
parent | 55d5fbc583f872b9890698322c5b03c62f371640 (diff) | |
download | PeerTube-4749078b8af8fdaf40dd35c9e2da7e681b9ea664.tar.gz PeerTube-4749078b8af8fdaf40dd35c9e2da7e681b9ea664.tar.zst PeerTube-4749078b8af8fdaf40dd35c9e2da7e681b9ea664.zip |
Add actor follow url migration
Diffstat (limited to 'server/initializers/migrations/0555-actor-follow-url.ts')
-rw-r--r-- | server/initializers/migrations/0555-actor-follow-url.ts | 26 |
1 files changed, 26 insertions, 0 deletions
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 | } | ||