forked from botlabs-gg/yagpdb
-
Notifications
You must be signed in to change notification settings - Fork 0
/
schema.go
41 lines (30 loc) · 862 Bytes
/
schema.go
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
package premium
const DBSchema = `
CREATE TABLE IF NOT EXISTS premium_slots (
id BIGSERIAL PRIMARY KEY,
created_at TIMESTAMP WITH TIME ZONE NOT NULL,
attached_at TIMESTAMP WITH TIME ZONE,
user_id BIGINT NOT NULL,
guild_id BIGINT,
title TEXT NOT NULL,
message TEXT NOT NULL,
source TEXT NOT NULL,
source_id BIGINT NOT NULL,
full_duration BIGINT NOT NULL,
permanent BOOLEAN NOT NULL,
duration_remaining BIGINT NOT NULL
);
CREATE TABLE IF NOT EXISTS premium_codes (
id BIGSERIAL PRIMARY KEY,
code TEXT UNIQUE NOT NULL,
message TEXT NOT NULL,
created_at TIMESTAMP WITH TIME ZONE NOT NULL,
used_at TIMESTAMP WITH TIME ZONE,
slot_id BIGINT references premium_slots(id),
user_id BIGINT,
guild_id BIGINT,
permanent BOOLEAN NOT NULL,
duration BIGINT NOT NULL
);
CREATE INDEX IF NOT EXISTS premium_codes_code_idx ON premium_codes(code);
`