X-Git-Url: https://git.arvados.org/arvados.git/blobdiff_plain/3723f697b61ce60858455473b3a5464a2da65bfb..97bb0917adfeb4db73c4c27cac8e337828c34015:/services/api/db/structure.sql diff --git a/services/api/db/structure.sql b/services/api/db/structure.sql index 1d7a2c6792..1573db232e 100644 --- a/services/api/db/structure.sql +++ b/services/api/db/structure.sql @@ -539,7 +539,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) ); @@ -1852,6 +1853,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: -- @@ -2674,4 +2682,10 @@ INSERT INTO schema_migrations (version) VALUES ('20160509143250'); INSERT INTO schema_migrations (version) VALUES ('20160808151459'); -INSERT INTO schema_migrations (version) VALUES ('20160808151559'); \ No newline at end of file +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'); \ No newline at end of file