master
SneedBot 2024-04-20 00:00:18 +00:00
parent 09a6c09258
commit e47d40b0bb
1 changed files with 84 additions and 0 deletions

View File

@ -2139,6 +2139,41 @@ CREATE INDEX emojis_idx3 ON public.emojis USING btree (count DESC);
CREATE INDEX emojis_idx4 ON public.emojis USING btree (submitter_id);
--
-- Name: fki_award_user_fkey; Type: INDEX; Schema: public; Owner: -
--
CREATE INDEX fki_award_user_fkey ON public.award_relationships USING btree (user_id);
--
-- Name: fki_casino_game_fkey; Type: INDEX; Schema: public; Owner: -
--
CREATE INDEX fki_casino_game_fkey ON public.comments USING btree (casino_game_id);
--
-- Name: fki_chat_messages_chat_fkey; Type: INDEX; Schema: public; Owner: -
--
CREATE INDEX fki_chat_messages_chat_fkey ON public.chat_messages USING btree (chat_id);
--
-- Name: fki_chat_messages_quotes_fkey; Type: INDEX; Schema: public; Owner: -
--
CREATE INDEX fki_chat_messages_quotes_fkey ON public.chat_messages USING btree (quotes);
--
-- Name: fki_chat_messages_user_fkey; Type: INDEX; Schema: public; Owner: -
--
CREATE INDEX fki_chat_messages_user_fkey ON public.chat_messages USING btree (user_id);
--
-- Name: fki_comment_approver_fkey; Type: INDEX; Schema: public; Owner: -
--
@ -2146,6 +2181,13 @@ CREATE INDEX emojis_idx4 ON public.emojis USING btree (submitter_id);
CREATE INDEX fki_comment_approver_fkey ON public.comments USING btree (is_approved);
--
-- Name: fki_comment_option_votes_user_fkey; Type: INDEX; Schema: public; Owner: -
--
CREATE INDEX fki_comment_option_votes_user_fkey ON public.comment_option_votes USING btree (user_id);
--
-- Name: fki_comment_save_relationship_comment_fkey; Type: INDEX; Schema: public; Owner: -
--
@ -2160,6 +2202,13 @@ CREATE INDEX fki_comment_save_relationship_comment_fkey ON public.comment_save_r
CREATE INDEX fki_comment_sentto_fkey ON public.comments USING btree (sentto);
--
-- 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_exile_exiler_fkey; Type: INDEX; Schema: public; Owner: -
--
@ -2174,6 +2223,13 @@ CREATE INDEX fki_exile_exiler_fkey ON public.exiles USING btree (exiler_id);
CREATE INDEX fki_exile_sub_fkey ON public.exiles USING btree (hole);
--
-- Name: fki_media_user_fkey; Type: INDEX; Schema: public; Owner: -
--
CREATE INDEX fki_media_user_fkey ON public.media USING btree (user_id);
--
-- Name: fki_mod_sub_fkey; Type: INDEX; Schema: public; Owner: -
--
@ -2237,6 +2293,13 @@ CREATE INDEX fki_sub_subscriptions_sub_fkey ON public.hole_follows USING btree (
CREATE INDEX fki_subactions_user_fkey ON public.hole_actions USING btree (target_user_id);
--
-- Name: fki_user_blacklisted_by_fkey; Type: INDEX; Schema: public; Owner: -
--
CREATE INDEX fki_user_blacklisted_by_fkey ON public.users USING btree (blacklisted_by);
--
-- Name: fki_user_chudded_by_fkey; Type: INDEX; Schema: public; Owner: -
--
@ -2272,6 +2335,27 @@ CREATE INDEX fki_user_shadowbanned_fkey ON public.users USING btree (shadowbanne
CREATE INDEX fki_view_viewer_fkey ON public.viewers USING btree (viewer_id);
--
-- Name: fki_vote_comment_fkey; Type: INDEX; Schema: public; Owner: -
--
CREATE INDEX fki_vote_comment_fkey ON public.comment_option_votes USING btree (comment_id);
--
-- Name: fki_vote_post_fkey; Type: INDEX; Schema: public; Owner: -
--
CREATE INDEX fki_vote_post_fkey ON public.post_option_votes USING btree (post_id);
--
-- Name: fki_vote_user_fkey; Type: INDEX; Schema: public; Owner: -
--
CREATE INDEX fki_vote_user_fkey ON public.post_option_votes USING btree (user_id);
--
-- Name: fki_wall_user_id_fkey; Type: INDEX; Schema: public; Owner: -
--