remotes/1693045480750635534/spooky-22
Aevann1 2022-02-13 21:00:02 +00:00
parent faaaca4cf3
commit 99df688ae0
1 changed files with 1 additions and 64 deletions

View File

@ -1570,13 +1570,6 @@ CREATE INDEX comment_post_id_index ON public.comments USING btree (parent_submis
CREATE INDEX commentflag_comment_index ON public.commentflags USING btree (comment_id);
--
-- Name: comments_parent_id_idx; Type: INDEX; Schema: public; Owner: -
--
CREATE INDEX comments_parent_id_idx ON public.comments USING btree (parent_comment_id);
--
-- Name: comments_user_index; Type: INDEX; Schema: public; Owner: -
--
@ -1647,20 +1640,6 @@ CREATE INDEX fki_c ON public.notifications USING btree (user_id);
CREATE INDEX fki_comment_approver_fkey ON public.comments USING btree (is_approved);
--
-- Name: fki_comment_parent_comment_fkey; Type: INDEX; Schema: public; Owner: -
--
CREATE INDEX fki_comment_parent_comment_fkey ON public.comments USING btree (parent_comment_id);
--
-- Name: fki_comment_parent_submission_fkey; Type: INDEX; Schema: public; Owner: -
--
CREATE INDEX fki_comment_parent_submission_fkey ON public.comments USING btree (parent_submission);
--
-- Name: fki_comment_sentto_fkey; Type: INDEX; Schema: public; Owner: -
--
@ -1668,41 +1647,6 @@ CREATE INDEX fki_comment_parent_submission_fkey ON public.comments USING btree (
CREATE INDEX fki_comment_sentto_fkey ON public.comments USING btree (sentto);
--
-- Name: fki_commentflags_user_id_fkey; Type: INDEX; Schema: public; Owner: -
--
CREATE INDEX fki_commentflags_user_id_fkey ON public.commentflags USING btree (user_id);
--
-- Name: fki_comments_author_id_fkey; Type: INDEX; Schema: public; Owner: -
--
CREATE INDEX fki_comments_author_id_fkey ON public.comments USING btree (author_id);
--
-- Name: fki_commentvote_comment_fkey; Type: INDEX; Schema: public; Owner: -
--
CREATE INDEX fki_commentvote_comment_fkey ON public.commentvotes USING btree (comment_id);
--
-- Name: fki_commentvote_user_fkey; Type: INDEX; Schema: public; Owner: -
--
CREATE INDEX fki_commentvote_user_fkey ON public.commentvotes USING btree (user_id);
--
-- Name: fki_f; Type: INDEX; Schema: public; Owner: -
--
CREATE INDEX fki_f ON public.votes USING btree (user_id);
--
-- Name: fki_flags_user_id_fkey; Type: INDEX; Schema: public; Owner: -
--
@ -1808,13 +1752,6 @@ CREATE INDEX fki_view_user_fkey ON public.viewers USING btree (user_id);
CREATE INDEX fki_view_viewer_fkey ON public.viewers USING btree (viewer_id);
--
-- Name: fki_vote_submission_key; Type: INDEX; Schema: public; Owner: -
--
CREATE INDEX fki_vote_submission_key ON public.votes USING btree (submission_id);
--
-- Name: flag_user_idx; Type: INDEX; Schema: public; Owner: -
--
@ -2250,7 +2187,7 @@ ALTER TABLE ONLY public.comments
--
ALTER TABLE ONLY public.commentvotes
ADD CONSTRAINT commentvote_comment_fkey FOREIGN KEY (comment_id) REFERENCES public.comments(id) NOT VALID;
ADD CONSTRAINT commentvote_comment_fkey FOREIGN KEY (comment_id) REFERENCES public.comments(id) MATCH FULL NOT VALID;
--