-
-
Notifications
You must be signed in to change notification settings - Fork 32
/
schema.sql
130 lines (113 loc) · 5.16 KB
/
schema.sql
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
117
118
119
120
121
122
123
124
125
126
127
128
129
130
-- CREATE EXTENSION IF NOT EXISTS "pgcrypto";
-- DROP DATABASE IF EXISTS nakama CASCADE;
CREATE DATABASE IF NOT EXISTS nakama;
SET DATABASE = nakama;
CREATE TABLE IF NOT EXISTS users (
id UUID NOT NULL PRIMARY KEY DEFAULT gen_random_uuid(),
email VARCHAR NOT NULL UNIQUE,
username VARCHAR NOT NULL UNIQUE,
avatar VARCHAR,
google_provider_id VARCHAR UNIQUE,
github_provider_id VARCHAR UNIQUE,
cover VARCHAR,
bio VARCHAR,
waifu VARCHAR,
husbando VARCHAR,
followers_count INT NOT NULL DEFAULT 0 CHECK (followers_count >= 0),
followees_count INT NOT NULL DEFAULT 0 CHECK (followees_count >= 0),
created_at TIMESTAMPTZ NOT NULL DEFAULT now()
);
CREATE TABLE IF NOT EXISTS email_verification_codes (
email VARCHAR NOT NULL,
code UUID NOT NULL DEFAULT gen_random_uuid(),
created_at TIMESTAMPTZ NOT NULL DEFAULT now(),
PRIMARY KEY (email, code)
);
ALTER TABLE IF EXISTS email_verification_codes ADD COLUMN IF NOT EXISTS user_id UUID REFERENCES users ON DELETE CASCADE;
CREATE TABLE IF NOT EXISTS follows (
follower_id UUID NOT NULL REFERENCES users ON DELETE CASCADE,
followee_id UUID NOT NULL REFERENCES users ON DELETE CASCADE,
PRIMARY KEY (follower_id, followee_id)
);
CREATE TABLE IF NOT EXISTS posts (
id UUID NOT NULL PRIMARY KEY DEFAULT gen_random_uuid(),
user_id UUID NOT NULL REFERENCES users ON DELETE CASCADE,
content VARCHAR NOT NULL,
media VARCHAR[],
spoiler_of VARCHAR,
nsfw BOOLEAN NOT NULL DEFAULT false,
reactions JSONB,
comments_count INT NOT NULL DEFAULT 0 CHECK (comments_count >= 0),
created_at TIMESTAMPTZ NOT NULL DEFAULT now(),
updated_at TIMESTAMP NOT NULL DEFAULT now(),
INDEX sorted_posts (created_at DESC, id)
);
CREATE TABLE IF NOT EXISTS post_reactions (
user_id UUID NOT NULL REFERENCES users ON DELETE CASCADE,
post_id UUID NOT NULL REFERENCES posts ON DELETE CASCADE,
reaction VARCHAR NOT NULL,
type VARCHAR NOT NULL CHECK (type = 'emoji' OR type = 'custom'),
PRIMARY KEY (user_id, post_id, reaction)
);
CREATE TABLE IF NOT EXISTS post_subscriptions (
user_id UUID NOT NULL REFERENCES users ON DELETE CASCADE,
post_id UUID NOT NULL REFERENCES posts ON DELETE CASCADE,
PRIMARY KEY (user_id, post_id)
);
CREATE TABLE IF NOT EXISTS timeline (
id UUID NOT NULL PRIMARY KEY DEFAULT gen_random_uuid(),
user_id UUID NOT NULL REFERENCES users ON DELETE CASCADE,
post_id UUID NOT NULL REFERENCES posts ON DELETE CASCADE,
UNIQUE INDEX unique_timeline_items (user_id, post_id)
);
CREATE TABLE IF NOT EXISTS comments (
id UUID NOT NULL PRIMARY KEY DEFAULT gen_random_uuid(),
user_id UUID NOT NULL REFERENCES users ON DELETE CASCADE,
post_id UUID NOT NULL REFERENCES posts ON DELETE CASCADE,
content VARCHAR NOT NULL,
reactions JSONB,
created_at TIMESTAMPTZ NOT NULL DEFAULT now(),
INDEX sorted_comments (created_at DESC, id)
);
CREATE TABLE IF NOT EXISTS comment_reactions (
user_id UUID NOT NULL REFERENCES users ON DELETE CASCADE,
comment_id UUID NOT NULL REFERENCES comments ON DELETE CASCADE,
reaction VARCHAR NOT NULL,
type VARCHAR NOT NULL CHECK (type = 'emoji' OR type = 'custom'),
PRIMARY KEY (user_id, comment_id, reaction)
);
CREATE TABLE IF NOT EXISTS post_tags (
id UUID NOT NULL PRIMARY KEY DEFAULT gen_random_uuid(),
post_id UUID NOT NULL REFERENCES posts ON DELETE CASCADE,
comment_id UUID REFERENCES comments ON DELETE CASCADE,
tag VARCHAR NOT NULL
);
CREATE TABLE IF NOT EXISTS notifications (
id UUID NOT NULL PRIMARY KEY DEFAULT gen_random_uuid(),
user_id UUID NOT NULL REFERENCES users ON DELETE CASCADE,
actors VARCHAR[] NOT NULL,
type VARCHAR NOT NULL,
post_id UUID REFERENCES posts ON DELETE CASCADE,
read_at TIMESTAMPTZ,
issued_at TIMESTAMPTZ NOT NULL DEFAULT now(),
INDEX sorted_notifications (issued_at DESC, id),
UNIQUE INDEX unique_notifications (user_id, type, post_id, read_at)
);
CREATE TABLE IF NOT EXISTS user_web_push_subscriptions (
id UUID NOT NULL PRIMARY KEY DEFAULT gen_random_uuid(),
user_id UUID NOT NULL REFERENCES users ON DELETE CASCADE,
sub JSONB NOT NULL,
created_at TIMESTAMPTZ NOT NULL DEFAULT now(),
UNIQUE INDEX unique_user_web_push_subscriptions (user_id, (sub->>'endpoint'::TEXT))
);
-- INSERT INTO users (id, email, username) VALUES
-- ('24ca6ce6-b3e9-4276-a99a-45c77115cc9f', '[email protected]', 'shinji'),
-- ('93dfcef9-0b45-46ae-933c-ea52fbf80edb', '[email protected]', 'rei');
-- INSERT INTO posts (id, user_id, content, comments_count) VALUES
-- ('c592451b-fdd2-430d-8d49-e75f058c3dce', '24ca6ce6-b3e9-4276-a99a-45c77115cc9f', 'sample post', 1);
-- INSERT INTO post_subscriptions (user_id, post_id) VALUES
-- ('24ca6ce6-b3e9-4276-a99a-45c77115cc9f', 'c592451b-fdd2-430d-8d49-e75f058c3dce');
-- INSERT INTO timeline (id, user_id, post_id) VALUES
-- ('d7490258-1f2f-4a75-8fbb-1846ccde9543', '24ca6ce6-b3e9-4276-a99a-45c77115cc9f', 'c592451b-fdd2-430d-8d49-e75f058c3dce');
-- INSERT INTO comments (id, user_id, post_id, content) VALUES
-- ('648e60bf-b0ab-42e6-8e48-10f797b19c49', '24ca6ce6-b3e9-4276-a99a-45c77115cc9f', 'c592451b-fdd2-430d-8d49-e75f058c3dce', 'sample comment');