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/0120-video-null.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/0120-video-null.ts')
-rw-r--r-- | server/initializers/migrations/0120-video-null.ts | 45 |
1 files changed, 0 insertions, 45 deletions
diff --git a/server/initializers/migrations/0120-video-null.ts b/server/initializers/migrations/0120-video-null.ts deleted file mode 100644 index 1b407b270..000000000 --- a/server/initializers/migrations/0120-video-null.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 | db: any | ||
8 | }): Promise<void> { | ||
9 | |||
10 | { | ||
11 | const data = { | ||
12 | type: Sequelize.INTEGER, | ||
13 | allowNull: true, | ||
14 | defaultValue: null | ||
15 | } | ||
16 | await utils.queryInterface.changeColumn('Videos', 'licence', data) | ||
17 | } | ||
18 | |||
19 | { | ||
20 | const data = { | ||
21 | type: Sequelize.INTEGER, | ||
22 | allowNull: true, | ||
23 | defaultValue: null | ||
24 | } | ||
25 | await utils.queryInterface.changeColumn('Videos', 'category', data) | ||
26 | } | ||
27 | |||
28 | { | ||
29 | const data = { | ||
30 | type: Sequelize.STRING(10000), | ||
31 | allowNull: true, | ||
32 | defaultValue: null | ||
33 | } | ||
34 | await utils.queryInterface.changeColumn('Videos', 'description', data) | ||
35 | } | ||
36 | } | ||
37 | |||
38 | function down (options) { | ||
39 | throw new Error('Not implemented.') | ||
40 | } | ||
41 | |||
42 | export { | ||
43 | up, | ||
44 | down | ||
45 | } | ||