20470: Fix discovery document generation to drop unpublished fields
[arvados.git] / services / api / db / structure.sql
index 9f0e30fc47ae242b5643150947718de13791f397..3dd705a801a8f29040da1b07f4fa0a3d45527c29 100644 (file)
@@ -1942,6 +1942,13 @@ CREATE INDEX index_collections_on_is_trashed ON public.collections USING btree (
 CREATE INDEX index_collections_on_modified_at_and_uuid ON public.collections USING btree (modified_at, uuid);
 
 
+--
+-- Name: index_collections_on_name; Type: INDEX; Schema: public; Owner: -
+--
+
+CREATE INDEX index_collections_on_name ON public.collections USING gin (name public.gin_trgm_ops);
+
+
 --
 -- Name: index_collections_on_owner_uuid; Type: INDEX; Schema: public; Owner: -
 --
@@ -2131,6 +2138,13 @@ CREATE INDEX index_groups_on_is_trashed ON public.groups USING btree (is_trashed
 CREATE INDEX index_groups_on_modified_at_and_uuid ON public.groups USING btree (modified_at, uuid);
 
 
+--
+-- Name: index_groups_on_name; Type: INDEX; Schema: public; Owner: -
+--
+
+CREATE INDEX index_groups_on_name ON public.groups USING gin (name public.gin_trgm_ops);
+
+
 --
 -- Name: index_groups_on_owner_uuid; Type: INDEX; Schema: public; Owner: -
 --
@@ -3186,6 +3200,8 @@ INSERT INTO "schema_migrations" (version) VALUES
 ('20220505112900'),
 ('20220726034131'),
 ('20220804133317'),
-('20221230155924');
+('20221219165512'),
+('20221230155924'),
+('20230421142716');