X-Git-Url: https://git.arvados.org/arvados.git/blobdiff_plain/f824f854b26dbf5e6c1d10dc3eb4689349dd71fe..61925eaac13ef601879178d6343de9f9714f3da1:/services/api/db/structure.sql diff --git a/services/api/db/structure.sql b/services/api/db/structure.sql index 1d7a2c6792..fa4760d8a0 100644 --- a/services/api/db/structure.sql +++ b/services/api/db/structure.sql @@ -289,7 +289,8 @@ CREATE TABLE container_requests ( priority integer, expires_at timestamp without time zone, filters text, - updated_at timestamp without time zone NOT NULL + updated_at timestamp without time zone NOT NULL, + container_count integer DEFAULT 0 ); @@ -539,7 +540,8 @@ CREATE TABLE jobs ( description character varying(524288), state character varying(255), arvados_sdk_version character varying(255), - components text + components text, + script_parameters_digest character varying(255) ); @@ -1068,7 +1070,7 @@ CREATE TABLE workflows ( modified_by_user_uuid character varying(255), name character varying(255), description text, - workflow text, + definition text, updated_at timestamp without time zone NOT NULL ); @@ -1852,6 +1854,13 @@ CREATE INDEX index_jobs_on_owner_uuid ON jobs USING btree (owner_uuid); CREATE INDEX index_jobs_on_script ON jobs USING btree (script); +-- +-- Name: index_jobs_on_script_parameters_digest; Type: INDEX; Schema: public; Owner: -; Tablespace: +-- + +CREATE INDEX index_jobs_on_script_parameters_digest ON jobs USING btree (script_parameters_digest); + + -- -- Name: index_jobs_on_started_at; Type: INDEX; Schema: public; Owner: -; Tablespace: -- @@ -2402,7 +2411,7 @@ CREATE INDEX virtual_machines_search_index ON virtual_machines USING btree (uuid -- Name: workflows_full_text_search_idx; Type: INDEX; Schema: public; Owner: -; Tablespace: -- -CREATE INDEX workflows_full_text_search_idx ON workflows 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(workflow, ''::text)))); +CREATE INDEX workflows_full_text_search_idx ON workflows 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(definition, ''::text)))); -- @@ -2672,6 +2681,14 @@ INSERT INTO schema_migrations (version) VALUES ('20160506175108'); INSERT INTO schema_migrations (version) VALUES ('20160509143250'); -INSERT INTO schema_migrations (version) VALUES ('20160808151459'); +INSERT INTO schema_migrations (version) VALUES ('20160808151559'); + +INSERT INTO schema_migrations (version) VALUES ('20160819195557'); + +INSERT INTO schema_migrations (version) VALUES ('20160819195725'); + +INSERT INTO schema_migrations (version) VALUES ('20160901210110'); + +INSERT INTO schema_migrations (version) VALUES ('20160909181442'); -INSERT INTO schema_migrations (version) VALUES ('20160808151559'); \ No newline at end of file +INSERT INTO schema_migrations (version) VALUES ('20160926194129'); \ No newline at end of file