aboutsummaryrefslogtreecommitdiffhomepage
path: root/server/initializers/migrations/0380-cleanup-timestamps.ts
diff options
context:
space:
mode:
authorChocobozzz <me@florianbigard.com>2019-05-21 13:14:27 +0200
committerChocobozzz <me@florianbigard.com>2019-05-21 13:14:27 +0200
commit63dc589865fa1882d38f1d9e0050d2341869d487 (patch)
treec97359bbcc2ff6f104d5939ba891161cd03c9de0 /server/initializers/migrations/0380-cleanup-timestamps.ts
parentac3d2e05695883dabb435868272709b955dcb77a (diff)
downloadPeerTube-63dc589865fa1882d38f1d9e0050d2341869d487.tar.gz
PeerTube-63dc589865fa1882d38f1d9e0050d2341869d487.tar.zst
PeerTube-63dc589865fa1882d38f1d9e0050d2341869d487.zip
Fix video views
Diffstat (limited to 'server/initializers/migrations/0380-cleanup-timestamps.ts')
-rw-r--r--server/initializers/migrations/0380-cleanup-timestamps.ts29
1 files changed, 29 insertions, 0 deletions
diff --git a/server/initializers/migrations/0380-cleanup-timestamps.ts b/server/initializers/migrations/0380-cleanup-timestamps.ts
new file mode 100644
index 000000000..2a9fd6f02
--- /dev/null
+++ b/server/initializers/migrations/0380-cleanup-timestamps.ts
@@ -0,0 +1,29 @@
1import * as Sequelize from 'sequelize'
2
3async function up (utils: {
4 transaction: Sequelize.Transaction,
5 queryInterface: Sequelize.QueryInterface,
6 sequelize: Sequelize.Sequelize,
7 db: any
8}): Promise<void> {
9 try {
10 await utils.queryInterface.removeColumn('application', 'createdAt')
11 } catch { /* the column could not exist */ }
12
13 try {
14 await utils.queryInterface.removeColumn('application', 'updatedAt')
15 } catch { /* the column could not exist */ }
16
17 try {
18 await utils.queryInterface.removeColumn('videoView', 'updatedAt')
19 } catch { /* the column could not exist */ }
20}
21
22function down (options) {
23 throw new Error('Not implemented.')
24}
25
26export {
27 up,
28 down
29}