forked from nh-server/Kurisu
-
Notifications
You must be signed in to change notification settings - Fork 0
/
schema.sql
61 lines (51 loc) · 835 Bytes
/
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
PRAGMA application_id = 0x4B757269;
PRAGMA user_version = 0x55566572;
create table friend_codes
(
user_id INTEGER PRIMARY KEY,
fc INTEGER
);
create table helpers
(
user_id INTEGER PRIMARY KEY,
console text
);
create table nofilter
(
channel_id INTEGER PRIMARY KEY
);
create table permanent_roles
(
user_id int,
role_id integer
);
create table softbans
(
user_id INTEGER PRIMARY KEY,
issuer_id int,
reason text,
timestamp text
);
create table staff
(
user_id INTEGER PRIMARY KEY,
position TEXT
);
create table timed_restrictions
(
user_id integer,
timestamp TEXT,
type text,
alert integer default 0
);
create table warns
(
warn_id INTEGER PRIMARY KEY,
user_id int,
issuer_id int,
reason text
);
create table watchlist
(
user_id INTEGER PRIMARY KEY
);