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/0245-user-blocked.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/0245-user-blocked.ts')
-rw-r--r-- | server/initializers/migrations/0245-user-blocked.ts | 45 |
1 files changed, 0 insertions, 45 deletions
diff --git a/server/initializers/migrations/0245-user-blocked.ts b/server/initializers/migrations/0245-user-blocked.ts deleted file mode 100644 index 19c7d5b9c..000000000 --- a/server/initializers/migrations/0245-user-blocked.ts +++ /dev/null | |||
@@ -1,45 +0,0 @@ | |||
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<any> { | ||
8 | { | ||
9 | const data = { | ||
10 | type: Sequelize.BOOLEAN, | ||
11 | allowNull: true, | ||
12 | defaultValue: null | ||
13 | } | ||
14 | await utils.queryInterface.addColumn('user', 'blocked', data) | ||
15 | } | ||
16 | |||
17 | { | ||
18 | const query = 'UPDATE "user" SET "blocked" = false' | ||
19 | await utils.sequelize.query(query) | ||
20 | } | ||
21 | |||
22 | { | ||
23 | const data = { | ||
24 | type: Sequelize.BOOLEAN, | ||
25 | allowNull: false, | ||
26 | defaultValue: null | ||
27 | } | ||
28 | await utils.queryInterface.changeColumn('user', 'blocked', data) | ||
29 | } | ||
30 | |||
31 | { | ||
32 | const data = { | ||
33 | type: Sequelize.STRING(250), | ||
34 | allowNull: true, | ||
35 | defaultValue: null | ||
36 | } | ||
37 | await utils.queryInterface.addColumn('user', 'blockedReason', data) | ||
38 | } | ||
39 | } | ||
40 | |||
41 | function down (options) { | ||
42 | throw new Error('Not implemented.') | ||
43 | } | ||
44 | |||
45 | export { up, down } | ||