schema
This commit is contained in:
parent
017f4d36cc
commit
a29352c46d
1 changed files with 2 additions and 10 deletions
12
schema.sql
12
schema.sql
|
@ -304,7 +304,6 @@ CREATE TABLE public.client_auths (
|
||||||
id integer NOT NULL,
|
id integer NOT NULL,
|
||||||
user_id integer,
|
user_id integer,
|
||||||
oauth_client integer,
|
oauth_client integer,
|
||||||
scope_guildmaster boolean,
|
|
||||||
access_token character(128)
|
access_token character(128)
|
||||||
);
|
);
|
||||||
|
|
||||||
|
@ -807,7 +806,8 @@ CREATE TABLE public.submissions (
|
||||||
views integer,
|
views integer,
|
||||||
is_bot boolean,
|
is_bot boolean,
|
||||||
bannedfor boolean,
|
bannedfor boolean,
|
||||||
comment_count integer DEFAULT 0
|
comment_count integer DEFAULT 0,
|
||||||
|
processing boolean DEFAULT false
|
||||||
);
|
);
|
||||||
|
|
||||||
|
|
||||||
|
@ -1489,14 +1489,6 @@ ALTER TABLE ONLY public.follows
|
||||||
ADD CONSTRAINT follows_pkey PRIMARY KEY (id);
|
ADD CONSTRAINT follows_pkey PRIMARY KEY (id);
|
||||||
|
|
||||||
|
|
||||||
--
|
|
||||||
-- Name: subscriptions guild_membership_unique; Type: CONSTRAINT; Schema: public; Owner: postgres
|
|
||||||
--
|
|
||||||
|
|
||||||
ALTER TABLE ONLY public.subscriptions
|
|
||||||
ADD CONSTRAINT guild_membership_unique UNIQUE (user_id, board_id);
|
|
||||||
|
|
||||||
|
|
||||||
--
|
--
|
||||||
-- Name: images images_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
|
-- Name: images images_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
|
||||||
--
|
--
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue