diff options
author | Chocobozzz <florian.bigard@gmail.com> | 2017-11-28 10:00:02 +0100 |
---|---|---|
committer | Chocobozzz <florian.bigard@gmail.com> | 2017-11-28 10:00:02 +0100 |
commit | eb7a06c812a464e0ea2e75c03999426a2eaef4a5 (patch) | |
tree | 50fd89e65c8d8f8b670db97b6b8eb8781eda7781 | |
parent | 5e3bb76cb6cc17ff2ba5a492ea3ed8358e66a00a (diff) | |
download | PeerTube-eb7a06c812a464e0ea2e75c03999426a2eaef4a5.tar.gz PeerTube-eb7a06c812a464e0ea2e75c03999426a2eaef4a5.tar.zst PeerTube-eb7a06c812a464e0ea2e75c03999426a2eaef4a5.zip |
Fix migration for Servers table
-rw-r--r-- | server/initializers/constants.ts | 2 | ||||
-rw-r--r-- | server/initializers/migrations/0105-server-mail.ts | 20 | ||||
-rw-r--r-- | server/initializers/migrations/0110-server-key.ts | 20 |
3 files changed, 41 insertions, 1 deletions
diff --git a/server/initializers/constants.ts b/server/initializers/constants.ts index 786334d46..f09422ffd 100644 --- a/server/initializers/constants.ts +++ b/server/initializers/constants.ts | |||
@@ -14,7 +14,7 @@ import { FollowState } from '../../shared/models/accounts/follow.model' | |||
14 | 14 | ||
15 | // --------------------------------------------------------------------------- | 15 | // --------------------------------------------------------------------------- |
16 | 16 | ||
17 | const LAST_MIGRATION_VERSION = 100 | 17 | const LAST_MIGRATION_VERSION = 110 |
18 | 18 | ||
19 | // --------------------------------------------------------------------------- | 19 | // --------------------------------------------------------------------------- |
20 | 20 | ||
diff --git a/server/initializers/migrations/0105-server-mail.ts b/server/initializers/migrations/0105-server-mail.ts new file mode 100644 index 000000000..5836992d5 --- /dev/null +++ b/server/initializers/migrations/0105-server-mail.ts | |||
@@ -0,0 +1,20 @@ | |||
1 | import * as Sequelize from 'sequelize' | ||
2 | import { PeerTubeDatabase } from '../database' | ||
3 | |||
4 | async function up (utils: { | ||
5 | transaction: Sequelize.Transaction, | ||
6 | queryInterface: Sequelize.QueryInterface, | ||
7 | sequelize: Sequelize.Sequelize, | ||
8 | db: PeerTubeDatabase | ||
9 | }): Promise<void> { | ||
10 | await utils.queryInterface.removeColumn('Servers', 'email') | ||
11 | } | ||
12 | |||
13 | function down (options) { | ||
14 | throw new Error('Not implemented.') | ||
15 | } | ||
16 | |||
17 | export { | ||
18 | up, | ||
19 | down | ||
20 | } | ||
diff --git a/server/initializers/migrations/0110-server-key.ts b/server/initializers/migrations/0110-server-key.ts new file mode 100644 index 000000000..560353945 --- /dev/null +++ b/server/initializers/migrations/0110-server-key.ts | |||
@@ -0,0 +1,20 @@ | |||
1 | import * as Sequelize from 'sequelize' | ||
2 | import { PeerTubeDatabase } from '../database' | ||
3 | |||
4 | async function up (utils: { | ||
5 | transaction: Sequelize.Transaction, | ||
6 | queryInterface: Sequelize.QueryInterface, | ||
7 | sequelize: Sequelize.Sequelize, | ||
8 | db: PeerTubeDatabase | ||
9 | }): Promise<void> { | ||
10 | await utils.queryInterface.removeColumn('Servers', 'publicKey') | ||
11 | } | ||
12 | |||
13 | function down (options) { | ||
14 | throw new Error('Not implemented.') | ||
15 | } | ||
16 | |||
17 | export { | ||
18 | up, | ||
19 | down | ||
20 | } | ||