sneed
parent
da701f6e5b
commit
f2f0a313db
14
schema.sql
14
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: -
|
||||
--
|
||||
|
|
Loading…
Reference in New Issue