-
-
Notifications
You must be signed in to change notification settings - Fork 73
/
fire_schema.sql
579 lines (404 loc) · 10.8 KB
/
fire_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
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
--
-- PostgreSQL database dump
--
-- Dumped from database version 10.14 (Ubuntu 10.14-1.pgdg18.04+1)
-- Dumped by pg_dump version 10.14 (Ubuntu 10.14-1.pgdg18.04+1)
SET statement_timeout = 0;
SET lock_timeout = 0;
SET idle_in_transaction_session_timeout = 0;
SET client_encoding = 'UTF8';
SET standard_conforming_strings = on;
SELECT pg_catalog.set_config('search_path', '', false);
SET check_function_bodies = false;
SET xmloption = content;
SET client_min_messages = warning;
SET row_security = off;
--
-- Name: plpgsql; Type: EXTENSION; Schema: -; Owner:
--
CREATE EXTENSION IF NOT EXISTS plpgsql WITH SCHEMA pg_catalog;
--
-- Name: EXTENSION plpgsql; Type: COMMENT; Schema: -; Owner:
--
COMMENT ON EXTENSION plpgsql IS 'PL/pgSQL procedural language';
SET default_tablespace = '';
SET default_with_oids = false;
--
-- Name: aliases; Type: TABLE; Schema: public; Owner: postgres
--
CREATE TABLE public.aliases (
uid text NOT NULL,
aliases text[]
);
ALTER TABLE public.aliases OWNER TO postgres;
--
-- Name: bans; Type: TABLE; Schema: public; Owner: postgres
--
CREATE TABLE public.bans (
gid text NOT NULL,
uid text NOT NULL,
until text DEFAULT 0
);
ALTER TABLE public.bans OWNER TO postgres;
--
-- Name: blacklist; Type: TABLE; Schema: public; Owner: postgres
--
CREATE TABLE public.blacklist (
"user" text,
uid text,
reason text,
perm integer
);
ALTER TABLE public.blacklist OWNER TO postgres;
--
-- Name: buildoverrides; Type: TABLE; Schema: public; Owner: postgres
--
CREATE TABLE public.buildoverrides (
id bigint NOT NULL,
bucket integer NOT NULL,
releasechannel text NOT NULL,
userids text[],
expiry timestamp without time zone,
hash text NOT NULL,
experiment bigint NOT NULL
);
ALTER TABLE public.buildoverrides OWNER TO postgres;
--
-- Name: customers; Type: TABLE; Schema: public; Owner: postgres
--
CREATE TABLE public.customers (
cid text NOT NULL,
email text,
discord text NOT NULL,
status text DEFAULT 'unpaid'::text NOT NULL,
paid boolean DEFAULT false NOT NULL,
active boolean DEFAULT false NOT NULL,
cantrial boolean DEFAULT true NOT NULL
);
ALTER TABLE public.customers OWNER TO postgres;
--
-- Name: datapackages; Type: TABLE; Schema: public; Owner: postgres
--
CREATE TABLE public.datapackages (
id text NOT NULL,
status text DEFAULT 'starting collection'::text NOT NULL
);
ALTER TABLE public.datapackages OWNER TO postgres;
--
-- Name: essential; Type: TABLE; Schema: public; Owner: postgres
--
CREATE TABLE public.essential (
uid text NOT NULL,
uuid text NOT NULL
);
ALTER TABLE public.essential OWNER TO postgres;
--
-- Name: experimentfilters; Type: TABLE; Schema: public; Owner: postgres
--
CREATE TABLE public.experimentfilters (
id bigint NOT NULL,
bucket integer NOT NULL,
features text[],
min_range integer,
max_range integer,
min_members integer,
max_members integer,
min_id bigint,
max_id bigint,
min_boosts integer,
max_boosts integer,
boost_tier integer
);
ALTER TABLE public.experimentfilters OWNER TO postgres;
--
-- Name: experiments; Type: TABLE; Schema: public; Owner: postgres
--
CREATE TABLE public.experiments (
id bigint NOT NULL,
kind text NOT NULL,
label text NOT NULL,
buckets integer[],
data json,
active boolean DEFAULT true
);
ALTER TABLE public.experiments OWNER TO postgres;
--
-- Name: guildconfig; Type: TABLE; Schema: public; Owner: postgres
--
CREATE TABLE public.guildconfig (
gid text NOT NULL,
data json
);
ALTER TABLE public.guildconfig OWNER TO postgres;
--
-- Name: invrole; Type: TABLE; Schema: public; Owner: postgres
--
CREATE TABLE public.invrole (
gid text,
rid text,
inv text
);
ALTER TABLE public.invrole OWNER TO postgres;
--
-- Name: modlogs; Type: TABLE; Schema: public; Owner: postgres
--
CREATE TABLE public.modlogs (
gid text,
uid text,
type text,
reason text,
date text,
caseid text,
modid text
);
ALTER TABLE public.modlogs OWNER TO postgres;
--
-- Name: mutes; Type: TABLE; Schema: public; Owner: postgres
--
CREATE TABLE public.mutes (
gid text DEFAULT 0 NOT NULL,
uid text DEFAULT 0 NOT NULL,
until text DEFAULT 0
);
ALTER TABLE public.mutes OWNER TO postgres;
--
-- Name: permroles; Type: TABLE; Schema: public; Owner: postgres
--
CREATE TABLE public.permroles (
gid text NOT NULL,
rid text NOT NULL,
allow text NOT NULL,
deny text NOT NULL
);
ALTER TABLE public.permroles OWNER TO postgres;
--
-- Name: premium_stripe; Type: TABLE; Schema: public; Owner: postgres
--
CREATE TABLE public.premium_stripe (
uid text NOT NULL,
subscription text NOT NULL,
customer text NOT NULL,
serverlimit integer DEFAULT 0 NOT NULL,
guilds text[],
periodend timestamp without time zone NOT NULL,
status text DEFAULT 'unpaid'::text NOT NULL,
active boolean DEFAULT true
);
ALTER TABLE public.premium_stripe OWNER TO postgres;
--
-- Name: reactrole; Type: TABLE; Schema: public; Owner: postgres
--
CREATE TABLE public.reactrole (
gid text NOT NULL,
mid text,
eid text,
rid text
);
ALTER TABLE public.reactrole OWNER TO postgres;
--
-- Name: referrals; Type: TABLE; Schema: public; Owner: postgres
--
CREATE TABLE public.referrals (
url text NOT NULL,
count integer DEFAULT 0 NOT NULL,
code text
);
ALTER TABLE public.referrals OWNER TO postgres;
--
-- Name: remind; Type: TABLE; Schema: public; Owner: postgres
--
CREATE TABLE public.remind (
uid text NOT NULL,
forwhen timestamp without time zone,
reminder text,
link text
);
ALTER TABLE public.remind OWNER TO postgres;
--
-- Name: rolepersists; Type: TABLE; Schema: public; Owner: postgres
--
CREATE TABLE public.rolepersists (
gid text,
uid text,
roles text[]
);
ALTER TABLE public.rolepersists OWNER TO postgres;
--
-- Name: starboard; Type: TABLE; Schema: public; Owner: postgres
--
CREATE TABLE public.starboard (
gid text NOT NULL,
original text NOT NULL,
board text NOT NULL
);
ALTER TABLE public.starboard OWNER TO postgres;
--
-- Name: starboard_reactions; Type: TABLE; Schema: public; Owner: postgres
--
CREATE TABLE public.starboard_reactions (
gid text NOT NULL,
mid text NOT NULL,
reactions integer DEFAULT 1 NOT NULL
);
ALTER TABLE public.starboard_reactions OWNER TO postgres;
--
-- Name: statushooks; Type: TABLE; Schema: public; Owner: postgres
--
CREATE TABLE public.statushooks (
url text NOT NULL,
page text NOT NULL,
gid text NOT NULL,
cid text NOT NULL,
uid text NOT NULL,
rid text,
pingonupdate boolean DEFAULT false
);
ALTER TABLE public.statushooks OWNER TO postgres;
--
-- Name: subscriptions; Type: TABLE; Schema: public; Owner: postgres
--
CREATE TABLE public.subscriptions (
id text NOT NULL,
cid text NOT NULL,
discord text NOT NULL,
product text NOT NULL,
price text NOT NULL,
status text DEFAULT 'unpaid'::text NOT NULL,
link text NOT NULL,
cancelonend boolean NOT NULL,
cancelat timestamp without time zone,
periodstart timestamp without time zone,
periodend timestamp without time zone,
created timestamp without time zone,
ended timestamp without time zone,
trialstart timestamp without time zone,
trialend timestamp without time zone
);
ALTER TABLE public.subscriptions OWNER TO postgres;
--
-- Name: tags; Type: TABLE; Schema: public; Owner: postgres
--
CREATE TABLE public.tags (
gid text,
name text,
content text,
uid text,
aliases text[],
uses integer DEFAULT 0
);
ALTER TABLE public.tags OWNER TO postgres;
--
-- Name: userconfig; Type: TABLE; Schema: public; Owner: postgres
--
CREATE TABLE public.userconfig (
uid text NOT NULL,
data json
);
ALTER TABLE public.userconfig OWNER TO postgres;
--
-- Name: vanity; Type: TABLE; Schema: public; Owner: postgres
--
CREATE TABLE public.vanity (
gid text,
code text NOT NULL,
invite text,
clicks integer DEFAULT 0,
links integer DEFAULT 0,
redirect text,
uid text,
description text
);
ALTER TABLE public.vanity OWNER TO postgres;
--
-- Name: vanitybl; Type: TABLE; Schema: public; Owner: postgres
--
CREATE TABLE public.vanitybl (
guild text NOT NULL,
gid text NOT NULL,
reason text
);
ALTER TABLE public.vanitybl OWNER TO postgres;
--
-- Name: vcroles; Type: TABLE; Schema: public; Owner: postgres
--
CREATE TABLE public.vcroles (
gid text NOT NULL,
rid text NOT NULL,
cid text NOT NULL
);
ALTER TABLE public.vcroles OWNER TO postgres;
--
-- Name: statushooks statushooks_url_key; Type: CONSTRAINT; Schema: public; Owner: postgres
--
ALTER TABLE ONLY public.statushooks
ADD CONSTRAINT statushooks_url_key UNIQUE (url);
--
-- Name: experiments unique_id; Type: CONSTRAINT; Schema: public; Owner: postgres
--
ALTER TABLE ONLY public.experiments
ADD CONSTRAINT unique_id UNIQUE (id, label);
--
-- Name: invrole unique_inv; Type: CONSTRAINT; Schema: public; Owner: postgres
--
ALTER TABLE ONLY public.invrole
ADD CONSTRAINT unique_inv UNIQUE (inv);
--
-- Name: vcroles vcroles_cid_key; Type: CONSTRAINT; Schema: public; Owner: postgres
--
ALTER TABLE ONLY public.vcroles
ADD CONSTRAINT vcroles_cid_key UNIQUE (cid);
--
-- Name: TABLE aliases; Type: ACL; Schema: public; Owner: postgres
--
GRANT SELECT ON TABLE public.aliases TO grafana;
--
-- Name: TABLE blacklist; Type: ACL; Schema: public; Owner: postgres
--
GRANT SELECT ON TABLE public.blacklist TO grafana;
--
-- Name: TABLE guildconfig; Type: ACL; Schema: public; Owner: postgres
--
GRANT SELECT ON TABLE public.guildconfig TO grafana;
--
-- Name: TABLE invrole; Type: ACL; Schema: public; Owner: postgres
--
GRANT SELECT ON TABLE public.invrole TO grafana;
--
-- Name: TABLE modlogs; Type: ACL; Schema: public; Owner: postgres
--
GRANT SELECT ON TABLE public.modlogs TO grafana;
--
-- Name: TABLE mutes; Type: ACL; Schema: public; Owner: postgres
--
GRANT SELECT ON TABLE public.mutes TO grafana;
--
-- Name: TABLE reactrole; Type: ACL; Schema: public; Owner: postgres
--
GRANT SELECT ON TABLE public.reactrole TO grafana;
--
-- Name: TABLE referrals; Type: ACL; Schema: public; Owner: postgres
--
GRANT SELECT ON TABLE public.referrals TO grafana;
--
-- Name: TABLE remind; Type: ACL; Schema: public; Owner: postgres
--
GRANT SELECT ON TABLE public.remind TO grafana;
--
-- Name: TABLE rolepersists; Type: ACL; Schema: public; Owner: postgres
--
GRANT SELECT ON TABLE public.rolepersists TO grafana;
--
-- Name: TABLE tags; Type: ACL; Schema: public; Owner: postgres
--
GRANT SELECT ON TABLE public.tags TO grafana;
--
-- Name: TABLE vanity; Type: ACL; Schema: public; Owner: postgres
--
GRANT SELECT ON TABLE public.vanity TO grafana;
--
-- Name: TABLE vanitybl; Type: ACL; Schema: public; Owner: postgres
--
GRANT SELECT ON TABLE public.vanitybl TO grafana;
--
-- PostgreSQL database dump complete
--