1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
|
import * as Sequelize from 'sequelize'
async function up (utils: {
transaction: Sequelize.Transaction
queryInterface: Sequelize.QueryInterface
sequelize: Sequelize.Sequelize
}): Promise<any> {
const indexNames = [
'accounts_application_id',
'accounts_user_id',
'accounts_name',
'account_video_rates_video_id_account_id',
'account_video_rates_video_id_account_id_type',
'account_follows_account_id_target_account_id',
'account_follow_account_id_target_account_id',
'account_follow_account_id',
'account_follow_target_account_id',
'account_follows_account_id',
'account_follows_target_account_id',
'o_auth_clients_client_id',
'o_auth_clients_client_id_client_secret',
'o_auth_tokens_access_token',
'o_auth_tokens_refresh_token',
'o_auth_tokens_o_auth_client_id',
'o_auth_tokens_user_id',
'pods_host',
'servers_host',
'tags_name',
'users_email',
'users_username',
'videos_channel_id',
'videos_created_at',
'videos_duration',
'videos_likes',
'videos_name',
'videos_uuid',
'videos_views',
'video_abuses_reporter_account_id',
'video_abuses_video_id',
'blacklisted_videos_video_id',
'video_channels_account_id',
'video_files_info_hash',
'video_files_video_id',
'video_shares_account_id',
'video_shares_video_id',
'video_tags_tag_id',
'video_tags_video_id'
]
for (const indexName of indexNames) {
await utils.sequelize.query('DROP INDEX IF EXISTS "' + indexName + '";')
}
await utils.sequelize.query('ALTER TABLE "account" DROP CONSTRAINT IF EXISTS "actorId_foreign_idx";')
await utils.sequelize.query('ALTER TABLE "videoChannel" DROP CONSTRAINT IF EXISTS "actorId_foreign_idx";')
await utils.sequelize.query('ALTER TABLE "videoShare" DROP CONSTRAINT IF EXISTS "VideoShares_videoId_fkey";')
await utils.sequelize.query('DROP TABLE IF EXISTS "videoChannelShare";')
}
function down (options) {
throw new Error('Not implemented.')
}
export { up, down }
|