-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathmigrate0.3.0-0.4.0.js
116 lines (96 loc) · 3.24 KB
/
migrate0.3.0-0.4.0.js
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
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
'use strict'
const async = require('asyncawait/async')
const await = require('asyncawait/await')
const Knex = require('knex')
const configFile = process.argv[2] || 'config.js'
const config = require('./' + configFile)
const main = async(function() {
const knex = Knex(config.database)
if (await(knex.schema.hasTable('knex_migrations'))) {
console.log('This is at least 0.4.0. Bailing out.')
process.exit()
}
if (!await(knex.schema.hasTable('orm_migrations'))) {
console.log('WARNING: This is not 0.3.0, but I\'ll try anyway.')
}
console.log('Migrating from 0.3.0 to 0.4.0')
// Suffix all tables with 'Old'.
const tables = [
'users', 'sites', 'siteadmins', 'accounts', 'pages', 'subscriptions', 'comments', 'oidc',
'oidcIdentifiers'
].forEach((table) => {
await(knex.schema.renameTable(table, table + 'Old'))
})
// Remove still unused superadmin table.
await(knex.schema.dropTable('superadmins'))
await(knex.schema.dropTable('orm_migrations'))
// Create tables with the new migrations.
await(knex.migrate.latest())
// Copy users
await(knex.raw(
'INSERT INTO users (id, displayName, avatar, email, anonymousIp)' +
' SELECT id, displayName, avatar, email, anonymousIp' +
' FROM usersOld'
))
console.log(await(knex('users').select()))
// Copy sites
await(knex.raw(
'INSERT INTO sites (id, domain, maxLevels)' +
' SELECT id, domain, maxLevels' +
' FROM sitesOld'
))
console.log(await(knex('sites').select()))
// Site admins
await(knex.raw(
'INSERT INTO siteadmins (siteId, userId)' +
' SELECT site_id, user_id' +
' FROM siteadminsOld'
))
console.log(await(knex('siteadmins').select()))
// Accounts
await(knex.raw(
'INSERT INTO accounts (id, uid, authenticator, userId)' +
' SELECT id, uid, authenticator, user_id' +
' FROM accountsOld'
))
console.log(await(knex('accounts').select()))
// Pages
await(knex.raw(
'INSERT INTO pages (id, url, siteId)' +
' SELECT id, url, site_id' +
' FROM pagesOld'
))
console.log(await(knex('pages').select()))
// Subscriptions
await(knex.raw(
'INSERT INTO subscriptions (userId, pageId)' +
' SELECT userId, pageId' +
' FROM subscriptionsOld'
))
console.log(await(knex('subscriptions').select()))
// Comments
await(knex.raw(
'INSERT INTO comments (id, text, userId, pageId, parentId, createdAt, modifiedAt, deletedAt)' +
' SELECT id, text, user_id, page_id, parent_id, createdAt, modifiedAt, deletedAt' +
' FROM commentsOld'
))
console.log(await(knex('comments').select()))
// Oidc
await(knex.raw(
'INSERT INTO oidc (id, issuer, authorizationURL, tokenURL, userInfoURL, registrationURL,' +
' clientID, clientSecret, expiresAt)' +
' SELECT id, issuer, authorizationURL, tokenURL, userInfoURL, registrationURL,' +
' clientID, clientSecret, expiresAt' +
' FROM oidcOld'
))
console.log(await(knex('oidc').select()))
// oidcIdentifiers
await(knex.raw(
'INSERT INTO oidcIdentifiers (identifier, oidcId)' +
' SELECT identifier, oidc_id' +
' FROM oidcIdentifiersOld'
))
console.log(await(knex('oidcIdentifiers').select()))
process.exit()
})
main().done()