X-Git-Url: https://git.openstreetmap.org/rails.git/blobdiff_plain/a8aed64eb757d8c25823e12c0ca7648a4c97ae13..ea68ac865ba4df5686ac111d4bd8679dc2a643a8:/db/structure.sql diff --git a/db/structure.sql b/db/structure.sql index 71cc60baa..0818ae0e9 100644 --- a/db/structure.sql +++ b/db/structure.sql @@ -1293,7 +1293,8 @@ CREATE TABLE public.users ( image_use_gravatar boolean DEFAULT false NOT NULL, image_content_type character varying, auth_provider character varying, - home_tile bigint + home_tile bigint, + tou_agreed timestamp without time zone ); @@ -2063,6 +2064,20 @@ CREATE INDEX gpx_files_user_id_idx ON public.gpx_files USING btree (user_id); CREATE INDEX gpx_files_visible_visibility_idx ON public.gpx_files USING btree (visible, visibility); +-- +-- Name: index_acls_on_address; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_acls_on_address ON public.acls USING gist (address inet_ops); + + +-- +-- Name: index_acls_on_domain; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_acls_on_domain ON public.acls USING btree (domain); + + -- -- Name: index_changeset_comments_on_created_at; Type: INDEX; Schema: public; Owner: - -- @@ -2931,7 +2946,9 @@ INSERT INTO "schema_migrations" (version) VALUES ('20161011010929'), ('20170222134109'), ('20180204153242'), +('20181020114000'), ('20181031113522'), +('20190518115041'), ('21'), ('22'), ('23'),