From cdb65e572f3d40ccb23629cfda0fb3bb5693ed96 Mon Sep 17 00:00:00 2001 From: Aevann1 Date: Tue, 7 Sep 2021 08:00:44 +0000 Subject: [PATCH] schema --- schema.sql | 12 ++---------- 1 file changed, 2 insertions(+), 10 deletions(-) diff --git a/schema.sql b/schema.sql index 6aee36e26..165c9be72 100644 --- a/schema.sql +++ b/schema.sql @@ -304,7 +304,6 @@ CREATE TABLE public.client_auths ( id integer NOT NULL, user_id integer, oauth_client integer, - scope_guildmaster boolean, access_token character(128) ); @@ -807,7 +806,8 @@ CREATE TABLE public.submissions ( views integer, is_bot 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); --- --- 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 --