diff --git a/disablesignups b/disablesignups new file mode 100644 index 000000000..5b1138b43 --- /dev/null +++ b/disablesignups @@ -0,0 +1 @@ +yesno \ No newline at end of file diff --git a/schema.sql b/schema.sql index 654da9b07..8317287c1 100644 --- a/schema.sql +++ b/schema.sql @@ -678,7 +678,6 @@ CREATE TABLE public.commentvotes ( comment_id integer, vote_type integer, user_id integer, - created_utc integer, creation_ip character(64), app_id integer ); @@ -1240,7 +1239,6 @@ CREATE TABLE public.votes ( id integer NOT NULL, user_id integer NOT NULL, submission_id integer, - created_utc integer NOT NULL, vote_type integer, creation_ip character(64), app_id integer @@ -2056,13 +2054,6 @@ CREATE INDEX commentvotes_comments_id_index ON public.commentvotes USING btree ( CREATE INDEX commentvotes_comments_type_index ON public.commentvotes USING btree (vote_type); --- --- Name: cvote_created_idx; Type: INDEX; Schema: public; Owner: postgres --- - -CREATE INDEX cvote_created_idx ON public.commentvotes USING btree (created_utc); - - -- -- Name: cvote_user_index; Type: INDEX; Schema: public; Owner: postgres -- @@ -2455,13 +2446,6 @@ CREATE INDEX users_unbanutc_idx ON public.users USING btree (unban_utc DESC); CREATE INDEX users_username_trgm_idx ON public.users USING gin (username public.gin_trgm_ops); --- --- Name: vote_created_idx; Type: INDEX; Schema: public; Owner: postgres --- - -CREATE INDEX vote_created_idx ON public.votes USING btree (created_utc); - - -- -- Name: vote_user_index; Type: INDEX; Schema: public; Owner: postgres --