X-Git-Url: https://git.arvados.org/arvados.git/blobdiff_plain/fefce5e8e133a8fa064bbcdf31d85d41dc4a6729..2a610a9d5d7e9446935436ff37267b8ada25fdbd:/services/api/db/structure.sql diff --git a/services/api/db/structure.sql b/services/api/db/structure.sql index b7d2ea59bb..007d05ebb6 100644 --- a/services/api/db/structure.sql +++ b/services/api/db/structure.sql @@ -159,10 +159,9 @@ CREATE TABLE collections ( modified_by_user_uuid character varying(255), modified_at timestamp without time zone, portable_data_hash character varying(255), - redundancy integer, - redundancy_confirmed_by_client_uuid character varying(255), - redundancy_confirmed_at timestamp without time zone, - redundancy_confirmed_as integer, + replication_desired integer, + replication_confirmed_at timestamp without time zone, + replication_confirmed integer, updated_at timestamp without time zone NOT NULL, uuid character varying(255), manifest_text text, @@ -1304,21 +1303,21 @@ CREATE INDEX authorized_keys_search_index ON authorized_keys USING btree (uuid, -- Name: collection_owner_uuid_name_unique; Type: INDEX; Schema: public; Owner: -; Tablespace: -- -CREATE UNIQUE INDEX collection_owner_uuid_name_unique ON collections USING btree (owner_uuid, name); +CREATE UNIQUE INDEX collection_owner_uuid_name_unique ON collections USING btree (owner_uuid, name) WHERE (expires_at IS NULL); -- -- Name: collections_full_text_search_idx; Type: INDEX; Schema: public; Owner: -; Tablespace: -- -CREATE INDEX collections_full_text_search_idx ON collections USING gin (to_tsvector('english'::regconfig, (((((((((((((((((((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(portable_data_hash, ''::character varying))::text) || ' '::text) || (COALESCE(redundancy_confirmed_by_client_uuid, ''::character varying))::text) || ' '::text) || (COALESCE(uuid, ''::character varying))::text) || ' '::text) || (COALESCE(name, ''::character varying))::text) || ' '::text) || (COALESCE(description, ''::character varying))::text) || ' '::text) || COALESCE(properties, ''::text)) || ' '::text) || (COALESCE(file_names, ''::character varying))::text))); +CREATE INDEX collections_full_text_search_idx ON collections USING gin (to_tsvector('english'::regconfig, (((((((((((((((((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(portable_data_hash, ''::character varying))::text) || ' '::text) || (COALESCE(uuid, ''::character varying))::text) || ' '::text) || (COALESCE(name, ''::character varying))::text) || ' '::text) || (COALESCE(description, ''::character varying))::text) || ' '::text) || COALESCE(properties, ''::text)) || ' '::text) || (COALESCE(file_names, ''::character varying))::text))); -- -- 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, file_names); +CREATE INDEX collections_search_index ON collections USING btree (owner_uuid, modified_by_client_uuid, modified_by_user_uuid, portable_data_hash, uuid, name, file_names); -- @@ -2355,4 +2354,12 @@ INSERT INTO schema_migrations (version) VALUES ('20150122175935'); INSERT INTO schema_migrations (version) VALUES ('20150123142953'); -INSERT INTO schema_migrations (version) VALUES ('20150203180223'); \ No newline at end of file +INSERT INTO schema_migrations (version) VALUES ('20150203180223'); + +INSERT INTO schema_migrations (version) VALUES ('20150206210804'); + +INSERT INTO schema_migrations (version) VALUES ('20150206230342'); + +INSERT INTO schema_migrations (version) VALUES ('20150216193428'); + +INSERT INTO schema_migrations (version) VALUES ('20150303210106'); \ No newline at end of file