diff options
author | Chocobozzz <me@florianbigard.com> | 2019-07-22 11:18:22 +0200 |
---|---|---|
committer | Chocobozzz <chocobozzz@cpy.re> | 2019-07-24 10:58:16 +0200 |
commit | 587568e1cc0e33c023c1ac62dd28fef313285250 (patch) | |
tree | e905b243d8a5fe5fb18ef5ef821c867cdde45aa6 /server/initializers/migrations/0405-plugin.ts | |
parent | 6691c52280363fc42f7865230ebb3741f02fff23 (diff) | |
download | PeerTube-587568e1cc0e33c023c1ac62dd28fef313285250.tar.gz PeerTube-587568e1cc0e33c023c1ac62dd28fef313285250.tar.zst PeerTube-587568e1cc0e33c023c1ac62dd28fef313285250.zip |
Add plugin table migration table
Diffstat (limited to 'server/initializers/migrations/0405-plugin.ts')
-rw-r--r-- | server/initializers/migrations/0405-plugin.ts | 40 |
1 files changed, 40 insertions, 0 deletions
diff --git a/server/initializers/migrations/0405-plugin.ts b/server/initializers/migrations/0405-plugin.ts new file mode 100644 index 000000000..c55b81960 --- /dev/null +++ b/server/initializers/migrations/0405-plugin.ts | |||
@@ -0,0 +1,40 @@ | |||
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 query = ` | ||
11 | CREATE TABLE IF NOT EXISTS "plugin" | ||
12 | ( | ||
13 | "id" SERIAL, | ||
14 | "name" VARCHAR(255) NOT NULL, | ||
15 | "type" INTEGER NOT NULL, | ||
16 | "version" VARCHAR(255) NOT NULL, | ||
17 | "latestVersion" VARCHAR(255), | ||
18 | "enabled" BOOLEAN NOT NULL, | ||
19 | "uninstalled" BOOLEAN NOT NULL, | ||
20 | "peertubeEngine" VARCHAR(255) NOT NULL, | ||
21 | "description" VARCHAR(255), | ||
22 | "homepage" VARCHAR(255) NOT NULL, | ||
23 | "settings" JSONB, | ||
24 | "storage" JSONB, | ||
25 | "createdAt" TIMESTAMP WITH TIME ZONE NOT NULL, | ||
26 | "updatedAt" TIMESTAMP WITH TIME ZONE NOT NULL, | ||
27 | PRIMARY KEY ("id") | ||
28 | );` | ||
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 | } | ||