X-Git-Url: https://git.openstreetmap.org./rails.git/blobdiff_plain/2f11b77309ee18aafb1bcce9dbe5bfc38a298bbb..367fa44a74c06563b6f0e23c1e9db888769f57f0:/db/structure.sql diff --git a/db/structure.sql b/db/structure.sql index 56e778523..4297d96f1 100644 --- a/db/structure.sql +++ b/db/structure.sql @@ -1017,7 +1017,6 @@ CREATE TABLE public.note_comments ( -- CREATE SEQUENCE public.note_comments_id_seq - AS integer START WITH 1 INCREMENT BY 1 NO MINVALUE @@ -1053,7 +1052,6 @@ CREATE TABLE public.notes ( -- CREATE SEQUENCE public.notes_id_seq - AS integer START WITH 1 INCREMENT BY 1 NO MINVALUE @@ -1199,7 +1197,6 @@ CREATE TABLE public.oauth_nonces ( -- CREATE SEQUENCE public.oauth_nonces_id_seq - AS integer START WITH 1 INCREMENT BY 1 NO MINVALUE @@ -2499,6 +2496,13 @@ CREATE INDEX index_changeset_comments_on_changeset_id_and_created_at ON public.c CREATE INDEX index_changeset_comments_on_created_at ON public.changeset_comments USING btree (created_at); +-- +-- Name: index_changesets_on_user_id_and_closed_at; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_changesets_on_user_id_and_closed_at ON public.changesets USING btree (user_id, closed_at); + + -- -- Name: index_changesets_subscribers_on_changeset_id; Type: INDEX; Schema: public; Owner: - -- @@ -3499,6 +3503,8 @@ INSERT INTO "schema_migrations" (version) VALUES ('23'), ('22'), ('21'), +('20231206141457'), +('20231117170422'), ('20231101222146'), ('20231029151516'), ('20231010194809'),