forked from kriasoft/graphql-starter-kit
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path201612010000_initial.js
88 lines (79 loc) · 3.96 KB
/
201612010000_initial.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
/**
* Copyright © 2016-present Kriasoft.
*
* This source code is licensed under the MIT license found in the
* LICENSE.txt file in the root directory of this source tree.
*/
// Create database schema for storing user accounts, logins and authentication claims/tokens
// Source https://github.com/membership/membership.db
// prettier-ignore
module.exports.up = async db => {
// User accounts
await db.schema.createTable('users', table => {
// UUID v1mc reduces the negative side effect of using random primary keys
// with respect to keyspace fragmentation on disk for the tables because it's time based
// https://www.postgresql.org/docs/current/static/uuid-ossp.html
table.uuid('id').notNullable().defaultTo(db.raw('uuid_generate_v1mc()')).primary();
table.string('display_name', 100);
table.string('image_url', 200);
table.string('password_hash', 128);
table.timestamps(false, true);
});
// Users' email addresses
await db.schema.createTable('emails', table => {
table.uuid('id').notNullable().defaultTo(db.raw('uuid_generate_v1mc()')).primary();
table.uuid('user_id').notNullable().references('id').inTable('users').onDelete('CASCADE').onUpdate('CASCADE');
table.string('email', 100).notNullable();
table.boolean('verified').notNullable().defaultTo(false);
table.boolean('primary').notNullable().defaultTo(false);
table.timestamps(false, true);
table.unique(['user_id', 'email', 'verified']);
});
// External logins with security tokens (e.g. Google, Facebook, Twitter)
await db.schema.createTable('logins', table => {
table.uuid('user_id').notNullable().references('id').inTable('users').onDelete('CASCADE').onUpdate('CASCADE');
table.string('provider', 16).notNullable();
table.string('id', 36).notNullable();
table.string('username', 100);
table.jsonb('tokens').notNullable();
table.jsonb('profile').notNullable();
table.timestamps(false, true);
table.primary(['provider', 'id']);
});
await db.schema.createTable('stories', table => {
table.uuid('id').notNullable().defaultTo(db.raw('uuid_generate_v1mc()')).primary();
table.uuid('author_id').notNullable().references('id').inTable('users').onDelete('CASCADE').onUpdate('CASCADE');
table.string('title', 80).notNullable();
table.string('url', 200);
table.text('text');
table.timestamps(false, true);
});
await db.schema.createTable('story_points', table => {
table.uuid('story_id').references('id').inTable('stories').onDelete('CASCADE').onUpdate('CASCADE');
table.uuid('user_id').notNullable().references('id').inTable('users').onDelete('CASCADE').onUpdate('CASCADE');
table.primary(['story_id', 'user_id']);
});
await db.schema.createTable('comments', table => {
table.uuid('id').notNullable().defaultTo(db.raw('uuid_generate_v1mc()')).primary();
table.uuid('story_id').notNullable().references('id').inTable('stories').onDelete('CASCADE').onUpdate('CASCADE');
table.uuid('parent_id').references('id').inTable('comments').onDelete('CASCADE').onUpdate('CASCADE');
table.uuid('author_id').notNullable().references('id').inTable('users').onDelete('CASCADE').onUpdate('CASCADE');
table.text('text');
table.timestamps(false, true);
});
await db.schema.createTable('comment_points', table => {
table.uuid('comment_id').references('id').inTable('comments').onDelete('CASCADE').onUpdate('CASCADE');
table.uuid('user_id').notNullable().references('id').inTable('users').onDelete('CASCADE').onUpdate('CASCADE');
table.primary(['comment_id', 'user_id']);
});
};
module.exports.down = async db => {
await db.schema.dropTableIfExists('comment_points');
await db.schema.dropTableIfExists('comments');
await db.schema.dropTableIfExists('story_points');
await db.schema.dropTableIfExists('stories');
await db.schema.dropTableIfExists('logins');
await db.schema.dropTableIfExists('emails');
await db.schema.dropTableIfExists('users');
};
module.exports.configuration = { transaction: true };