X-Git-Url: https://git.arvados.org/arvados.git/blobdiff_plain/ce6f582e7e1d5b927aeee0aab3def7ab8a5cae4f..cafe405682669b7ebdec8db4ee083c3ca2761827:/services/api/db/structure.sql diff --git a/services/api/db/structure.sql b/services/api/db/structure.sql index 1ce44cde4c..3ec420c1dd 100644 --- a/services/api/db/structure.sql +++ b/services/api/db/structure.sql @@ -46,7 +46,8 @@ CREATE TABLE api_client_authorizations ( default_owner_uuid character varying(255), scopes text DEFAULT '--- - all -'::text NOT NULL +'::text NOT NULL, + uuid character varying(255) NOT NULL ); @@ -337,7 +338,8 @@ CREATE TABLE containers ( container_image character varying(255), progress double precision, priority integer, - updated_at timestamp without time zone NOT NULL + updated_at timestamp without time zone NOT NULL, + exit_code integer ); @@ -534,7 +536,8 @@ CREATE TABLE jobs ( priority integer DEFAULT 0 NOT NULL, description character varying(524288), state character varying(255), - arvados_sdk_version character varying(255) + arvados_sdk_version character varying(255), + components text ); @@ -1413,7 +1416,7 @@ ALTER TABLE ONLY virtual_machines -- Name: api_client_authorizations_search_index; Type: INDEX; Schema: public; Owner: -; Tablespace: -- -CREATE INDEX api_client_authorizations_search_index ON api_client_authorizations USING btree (api_token, created_by_ip_address, last_used_by_ip_address, default_owner_uuid); +CREATE INDEX api_client_authorizations_search_index ON api_client_authorizations USING btree (api_token, created_by_ip_address, last_used_by_ip_address, default_owner_uuid, uuid); -- @@ -1451,6 +1454,27 @@ CREATE INDEX collections_full_text_search_idx ON collections USING gin (to_tsvec CREATE INDEX collections_search_index ON collections USING btree (owner_uuid, modified_by_client_uuid, modified_by_user_uuid, portable_data_hash, uuid, name); +-- +-- Name: container_requests_full_text_search_idx; Type: INDEX; Schema: public; Owner: -; Tablespace: +-- + +CREATE INDEX container_requests_full_text_search_idx ON container_requests USING gin (to_tsvector('english'::regconfig, (((((((((((((((((((((((((((((((((((' '::text || (COALESCE(uuid, ''::character varying))::text) || ' '::text) || (COALESCE(owner_uuid, ''::character varying))::text) || ' '::text) || (COALESCE(modified_by_client_uuid, ''::character varying))::text) || ' '::text) || (COALESCE(modified_by_user_uuid, ''::character varying))::text) || ' '::text) || (COALESCE(name, ''::character varying))::text) || ' '::text) || COALESCE(description, ''::text)) || ' '::text) || COALESCE(properties, ''::text)) || ' '::text) || (COALESCE(state, ''::character varying))::text) || ' '::text) || (COALESCE(requesting_container_uuid, ''::character varying))::text) || ' '::text) || (COALESCE(container_uuid, ''::character varying))::text) || ' '::text) || COALESCE(mounts, ''::text)) || ' '::text) || COALESCE(runtime_constraints, ''::text)) || ' '::text) || (COALESCE(container_image, ''::character varying))::text) || ' '::text) || COALESCE(environment, ''::text)) || ' '::text) || (COALESCE(cwd, ''::character varying))::text) || ' '::text) || COALESCE(command, ''::text)) || ' '::text) || (COALESCE(output_path, ''::character varying))::text) || ' '::text) || COALESCE(filters, ''::text)))); + + +-- +-- Name: container_requests_search_index; Type: INDEX; Schema: public; Owner: -; Tablespace: +-- + +CREATE INDEX container_requests_search_index ON container_requests USING btree (uuid, owner_uuid, modified_by_client_uuid, modified_by_user_uuid, name, state, requesting_container_uuid, container_uuid, container_image, cwd, output_path); + + +-- +-- Name: containers_search_index; Type: INDEX; Schema: public; Owner: -; Tablespace: +-- + +CREATE INDEX containers_search_index ON containers USING btree (uuid, owner_uuid, modified_by_client_uuid, modified_by_user_uuid, state, log, cwd, output_path, output, container_image); + + -- -- Name: groups_full_text_search_idx; Type: INDEX; Schema: public; Owner: -; Tablespace: -- @@ -1507,6 +1531,13 @@ CREATE INDEX index_api_client_authorizations_on_expires_at ON api_client_authori CREATE INDEX index_api_client_authorizations_on_user_id ON api_client_authorizations USING btree (user_id); +-- +-- Name: index_api_client_authorizations_on_uuid; Type: INDEX; Schema: public; Owner: -; Tablespace: +-- + +CREATE UNIQUE INDEX index_api_client_authorizations_on_uuid ON api_client_authorizations USING btree (uuid); + + -- -- Name: index_api_clients_on_created_at; Type: INDEX; Schema: public; Owner: -; Tablespace: -- @@ -1598,6 +1629,13 @@ CREATE UNIQUE INDEX index_commit_ancestors_on_descendant_and_ancestor ON commit_ CREATE UNIQUE INDEX index_commits_on_repository_name_and_sha1 ON commits USING btree (repository_name, sha1); +-- +-- Name: index_container_requests_on_owner_uuid; Type: INDEX; Schema: public; Owner: -; Tablespace: +-- + +CREATE INDEX index_container_requests_on_owner_uuid ON container_requests USING btree (owner_uuid); + + -- -- Name: index_container_requests_on_uuid; Type: INDEX; Schema: public; Owner: -; Tablespace: -- @@ -1605,6 +1643,13 @@ CREATE UNIQUE INDEX index_commits_on_repository_name_and_sha1 ON commits USING b CREATE UNIQUE INDEX index_container_requests_on_uuid ON container_requests USING btree (uuid); +-- +-- Name: index_containers_on_owner_uuid; Type: INDEX; Schema: public; Owner: -; Tablespace: +-- + +CREATE INDEX index_containers_on_owner_uuid ON containers USING btree (owner_uuid); + + -- -- Name: index_containers_on_uuid; Type: INDEX; Schema: public; Owner: -; Tablespace: -- @@ -2528,4 +2573,14 @@ INSERT INTO schema_migrations (version) VALUES ('20150512193020'); INSERT INTO schema_migrations (version) VALUES ('20150526180251'); -INSERT INTO schema_migrations (version) VALUES ('20151202151426'); \ No newline at end of file +INSERT INTO schema_migrations (version) VALUES ('20151202151426'); + +INSERT INTO schema_migrations (version) VALUES ('20151215134304'); + +INSERT INTO schema_migrations (version) VALUES ('20151229214707'); + +INSERT INTO schema_migrations (version) VALUES ('20160208210629'); + +INSERT INTO schema_migrations (version) VALUES ('20160209155729'); + +INSERT INTO schema_migrations (version) VALUES ('20160324144017'); \ No newline at end of file