aboutsummaryrefslogtreecommitdiffhomepage
path: root/server/initializers/migrations/0215-video-support-length.ts
diff options
context:
space:
mode:
authorChocobozzz <me@florianbigard.com>2022-03-21 14:54:29 +0100
committerChocobozzz <me@florianbigard.com>2022-03-21 14:54:29 +0100
commit348c2ce3ff3fe2f25a31f08bfb36c88723a0ce46 (patch)
tree972ec51091bab14e7671ef7db3b6e43ea5f116f7 /server/initializers/migrations/0215-video-support-length.ts
parente6afb669402aead6bf3d9d7ba4f2bd434c831eab (diff)
downloadPeerTube-348c2ce3ff3fe2f25a31f08bfb36c88723a0ce46.tar.gz
PeerTube-348c2ce3ff3fe2f25a31f08bfb36c88723a0ce46.tar.zst
PeerTube-348c2ce3ff3fe2f25a31f08bfb36c88723a0ce46.zip
Remove old migration files
Diffstat (limited to 'server/initializers/migrations/0215-video-support-length.ts')
-rw-r--r--server/initializers/migrations/0215-video-support-length.ts43
1 files changed, 0 insertions, 43 deletions
diff --git a/server/initializers/migrations/0215-video-support-length.ts b/server/initializers/migrations/0215-video-support-length.ts
deleted file mode 100644
index 26c0ca700..000000000
--- a/server/initializers/migrations/0215-video-support-length.ts
+++ /dev/null
@@ -1,43 +0,0 @@
1import * as Sequelize from 'sequelize'
2
3async 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(500),
11 allowNull: true,
12 defaultValue: null
13 }
14 await utils.queryInterface.changeColumn('video', 'support', data)
15 }
16
17 {
18 const data = {
19 type: Sequelize.STRING(500),
20 allowNull: true,
21 defaultValue: null
22 }
23 await utils.queryInterface.changeColumn('videoChannel', 'support', data)
24 }
25
26 {
27 const data = {
28 type: Sequelize.STRING(500),
29 allowNull: true,
30 defaultValue: null
31 }
32 await utils.queryInterface.changeColumn('videoChannel', 'description', data)
33 }
34}
35
36function down (options) {
37 throw new Error('Not implemented.')
38}
39
40export {
41 up,
42 down
43}