X-Git-Url: https://git.arvados.org/arvados.git/blobdiff_plain/4edb153ec9217aff3f833e9d8c645f9b525f41c6..5810ac278a9abac129369dafcdb42436452c74c8:/services/api/db/structure.sql diff --git a/services/api/db/structure.sql b/services/api/db/structure.sql index f50f907923..df3e58fe9a 100644 --- a/services/api/db/structure.sql +++ b/services/api/db/structure.sql @@ -167,9 +167,10 @@ CREATE TABLE collections ( uuid character varying(255), manifest_text text, name character varying(255), - description character varying(255), + description character varying(524288), properties text, - expires_at date + expires_at date, + file_names character varying(8192) ); @@ -272,7 +273,7 @@ CREATE TABLE groups ( modified_by_user_uuid character varying(255), modified_at timestamp without time zone, name character varying(255) NOT NULL, - description text, + description character varying(524288), updated_at timestamp without time zone NOT NULL, group_class character varying(255) ); @@ -431,7 +432,7 @@ CREATE TABLE jobs ( supplied_script_version character varying(255), docker_image_locator character varying(255), priority integer DEFAULT 0 NOT NULL, - description text, + description character varying(524288), state character varying(255), arvados_sdk_version character varying(255) ); @@ -685,7 +686,7 @@ CREATE TABLE pipeline_instances ( properties text, state character varying(255), components_summary text, - description text, + description character varying(524288), started_at timestamp without time zone, finished_at timestamp without time zone ); @@ -725,7 +726,7 @@ CREATE TABLE pipeline_templates ( name character varying(255), components text, updated_at timestamp without time zone NOT NULL, - description text + description character varying(524288) ); @@ -1310,7 +1311,7 @@ CREATE UNIQUE INDEX collection_owner_uuid_name_unique ON collections USING btree -- Name: collections_search_index; Type: INDEX; Schema: public; Owner: -; Tablespace: -- -CREATE INDEX collections_search_index ON collections USING btree (owner_uuid, modified_by_client_uuid, modified_by_user_uuid, portable_data_hash, redundancy_confirmed_by_client_uuid, uuid, name, description); +CREATE INDEX collections_search_index ON collections USING btree (owner_uuid, modified_by_client_uuid, modified_by_user_uuid, portable_data_hash, redundancy_confirmed_by_client_uuid, uuid, name, description, file_names); -- @@ -1324,7 +1325,7 @@ CREATE UNIQUE INDEX groups_owner_uuid_name_unique ON groups USING btree (owner_u -- Name: groups_search_index; Type: INDEX; Schema: public; Owner: -; Tablespace: -- -CREATE INDEX groups_search_index ON groups USING btree (uuid, owner_uuid, modified_by_client_uuid, modified_by_user_uuid, name, group_class); +CREATE INDEX groups_search_index ON groups USING btree (uuid, owner_uuid, modified_by_client_uuid, modified_by_user_uuid, name, description, group_class); -- @@ -1989,7 +1990,7 @@ CREATE INDEX job_tasks_search_index ON job_tasks USING btree (uuid, owner_uuid, -- Name: jobs_search_index; Type: INDEX; Schema: public; Owner: -; Tablespace: -- -CREATE INDEX jobs_search_index ON jobs USING btree (uuid, owner_uuid, modified_by_client_uuid, modified_by_user_uuid, submit_id, script, script_version, cancelled_by_client_uuid, cancelled_by_user_uuid, output, is_locked_by_uuid, log, repository, supplied_script_version, docker_image_locator, state, arvados_sdk_version); +CREATE INDEX jobs_search_index ON jobs USING btree (uuid, owner_uuid, modified_by_client_uuid, modified_by_user_uuid, submit_id, script, script_version, cancelled_by_client_uuid, cancelled_by_user_uuid, output, is_locked_by_uuid, log, repository, supplied_script_version, docker_image_locator, description, state, arvados_sdk_version); -- @@ -2038,7 +2039,7 @@ CREATE INDEX nodes_search_index ON nodes USING btree (uuid, owner_uuid, modified -- Name: pipeline_instances_search_index; Type: INDEX; Schema: public; Owner: -; Tablespace: -- -CREATE INDEX pipeline_instances_search_index ON pipeline_instances USING btree (uuid, owner_uuid, modified_by_client_uuid, modified_by_user_uuid, pipeline_template_uuid, name, state); +CREATE INDEX pipeline_instances_search_index ON pipeline_instances USING btree (uuid, owner_uuid, modified_by_client_uuid, modified_by_user_uuid, pipeline_template_uuid, name, state, description); -- @@ -2052,7 +2053,7 @@ CREATE UNIQUE INDEX pipeline_template_owner_uuid_name_unique ON pipeline_templat -- Name: pipeline_templates_search_index; Type: INDEX; Schema: public; Owner: -; Tablespace: -- -CREATE INDEX pipeline_templates_search_index ON pipeline_templates USING btree (uuid, owner_uuid, modified_by_client_uuid, modified_by_user_uuid, name); +CREATE INDEX pipeline_templates_search_index ON pipeline_templates USING btree (uuid, owner_uuid, modified_by_client_uuid, modified_by_user_uuid, name, description); -- @@ -2309,4 +2310,8 @@ INSERT INTO schema_migrations (version) VALUES ('20141111133038'); INSERT INTO schema_migrations (version) VALUES ('20141208164553'); +INSERT INTO schema_migrations (version) VALUES ('20141208174553'); + +INSERT INTO schema_migrations (version) VALUES ('20141208174653'); + INSERT INTO schema_migrations (version) VALUES ('20141208185217'); \ No newline at end of file