diff --git a/schema.sql b/schema.sql index e4a6d5843..e62eba4bf 100644 --- a/schema.sql +++ b/schema.sql @@ -1752,6 +1752,13 @@ CREATE INDEX casino_games_created_utc_idx ON public.casino_games USING btree (cr CREATE INDEX casino_games_user_id_winnings_idx ON public.casino_games USING btree (user_id, winnings); +-- +-- Name: casino_games_winnings_idx; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX casino_games_winnings_idx ON public.casino_games USING btree (winnings); + + -- -- Name: comment_is_banned_idx; Type: INDEX; Schema: public; Owner: - -- @@ -2270,6 +2277,13 @@ CREATE INDEX users_bite_idx ON public.users USING btree (bite); CREATE INDEX users_chud_idx ON public.users USING btree (chud); +-- +-- Name: users_coins_spent_on_hats_idx; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX users_coins_spent_on_hats_idx ON public.users USING btree (coins_spent_on_hats); + + -- -- Name: users_created_utc_index; Type: INDEX; Schema: public; Owner: - --