pull/157/head
SneedBot 2023-06-23 13:54:00 +00:00
parent d9bed378a9
commit ae13ad2664
10 changed files with 9 additions and 9 deletions

Binary file not shown.

After

Width:  |  Height:  |  Size: 10 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 15 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 32 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 85 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 60 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 68 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 48 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 40 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 49 KiB

View File

@ -189,7 +189,7 @@ CREATE TABLE public.users (
css character varying(10000),
profilecss character varying(10000),
coins integer DEFAULT 0 NOT NULL,
agendaposter integer DEFAULT 0 NOT NULL,
chud integer DEFAULT 0 NOT NULL,
post_count integer DEFAULT 0 NOT NULL,
comment_count integer DEFAULT 0 NOT NULL,
highres character varying(60),
@ -247,7 +247,7 @@ CREATE TABLE public.users (
event_darkmode boolean,
blacklisted_by integer,
hidevotedon boolean DEFAULT false NOT NULL,
agendaposter_phrase character varying(35),
chud_phrase character varying(35),
prelock_username character varying(30),
namechanged integer,
queen integer
@ -2186,13 +2186,6 @@ CREATE INDEX transactions_email_idx ON public.transactions USING btree (email);
CREATE INDEX user_private_idx ON public.users USING btree (is_private);
--
-- Name: users_agendaposter_idx; Type: INDEX; Schema: public; Owner: -
--
CREATE INDEX users_agendaposter_idx ON public.users USING btree (agendaposter);
--
-- Name: users_bird_idx; Type: INDEX; Schema: public; Owner: -
--
@ -2207,6 +2200,13 @@ CREATE INDEX users_bird_idx ON public.users USING btree (bird);
CREATE INDEX users_bite_idx ON public.users USING btree (bite);
--
-- Name: users_chud_idx; Type: INDEX; Schema: public; Owner: -
--
CREATE INDEX users_chud_idx ON public.users USING btree (chud);
--
-- Name: users_created_utc_index; Type: INDEX; Schema: public; Owner: -
--