X-Git-Url: https://git.arvados.org/arvados.git/blobdiff_plain/c031d4145d8ab1a11463acf5b20ef4df1afe00a4..daa4ee15fdf51a573f96b74c9fd01747b63bbeb0:/services/api/db/structure.sql diff --git a/services/api/db/structure.sql b/services/api/db/structure.sql index aa29a1cbb4..f766f33e1b 100644 --- a/services/api/db/structure.sql +++ b/services/api/db/structure.sql @@ -362,7 +362,8 @@ CREATE TABLE public.containers ( runtime_status jsonb DEFAULT '{}'::jsonb, runtime_user_uuid text, runtime_auth_scopes jsonb, - runtime_token text + runtime_token text, + lock_count integer DEFAULT 0 NOT NULL ); @@ -2278,6 +2279,20 @@ CREATE INDEX index_links_on_modified_at_uuid ON public.links USING btree (modifi CREATE INDEX index_links_on_owner_uuid ON public.links USING btree (owner_uuid); +-- +-- Name: index_links_on_substring_head_uuid; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_links_on_substring_head_uuid ON public.links USING btree ("substring"((head_uuid)::text, 7, 5)); + + +-- +-- Name: index_links_on_substring_tail_uuid; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_links_on_substring_tail_uuid ON public.links USING btree ("substring"((tail_uuid)::text, 7, 5)); + + -- -- Name: index_links_on_tail_uuid; Type: INDEX; Schema: public; Owner: - -- @@ -3201,3 +3216,7 @@ INSERT INTO schema_migrations (version) VALUES ('20181005192222'); INSERT INTO schema_migrations (version) VALUES ('20181011184200'); +INSERT INTO schema_migrations (version) VALUES ('20181213183234'); + +INSERT INTO schema_migrations (version) VALUES ('20190214214814'); +