-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdb.sql
More file actions
67 lines (53 loc) · 1.18 KB
/
db.sql
File metadata and controls
67 lines (53 loc) · 1.18 KB
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
create table if not exists users
(
id serial not null
constraint users_pkey
primary key,
username text not null,
email text not null,
password text,
confirmed boolean
);
create unique index if not exists users_id_uindex
on users (id);
create unique index if not exists users_email_uindex
on users (email);
create unique index if not exists users_username_uindex
on users (username);
create table if not exists rooms
(
id serial not null
constraint rooms_pkey
primary key,
board_name text not null,
status text
);
create unique index if not exists rooms_id_uindex
on rooms (id);
create unique index if not exists rooms_board_name_uindex
on rooms (board_name);
create table if not exists owners
(
owner_id integer
constraint owners_users_id_fk
references users,
room_id integer
constraint owners_rooms_id_fk
references rooms
on delete cascade,
owner_color text
);
create table if not exists init_board
(
id text not null
constraint table_name_pkey
primary key,
ycor text not null,
xcor text,
cellid text not null,
color text not null,
type text not null,
status boolean
);
create unique index if not exists table_name_id_uindex
on init_board (id);