X-Git-Url: https://git.arvados.org/arvados.git/blobdiff_plain/a934fcf84acd4cc3a351fde1b6e21a0bd93757ef..bfee777f81cbdb447a107f47d6077994e93e4b8c:/services/api/db/structure.sql diff --git a/services/api/db/structure.sql b/services/api/db/structure.sql index b7d2ea59bb..a86de69738 100644 --- a/services/api/db/structure.sql +++ b/services/api/db/structure.sql @@ -159,17 +159,16 @@ 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, name character varying(255), description character varying(524288), properties text, - expires_at date, + expires_at timestamp without time zone, file_names character varying(8192) ); @@ -433,8 +432,8 @@ CREATE TABLE jobs ( docker_image_locator character varying(255), 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), + state character varying(255) ); @@ -761,8 +760,6 @@ CREATE TABLE repositories ( modified_by_user_uuid character varying(255), modified_at timestamp without time zone, name character varying(255), - fetch_url character varying(255), - push_url character varying(255), created_at timestamp without time zone NOT NULL, updated_at timestamp without time zone NOT NULL ); @@ -890,7 +887,8 @@ CREATE TABLE users ( prefs text, updated_at timestamp without time zone NOT NULL, default_owner_uuid character varying(255), - is_active boolean DEFAULT false + is_active boolean DEFAULT false, + username character varying(255) ); @@ -1304,21 +1302,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); -- @@ -1965,6 +1963,13 @@ CREATE INDEX index_users_on_modified_at ON users USING btree (modified_at); CREATE INDEX index_users_on_owner_uuid ON users USING btree (owner_uuid); +-- +-- Name: index_users_on_username; Type: INDEX; Schema: public; Owner: -; Tablespace: +-- + +CREATE UNIQUE INDEX index_users_on_username ON users USING btree (username); + + -- -- Name: index_users_on_uuid; Type: INDEX; Schema: public; Owner: -; Tablespace: -- @@ -2095,7 +2100,7 @@ CREATE INDEX pipeline_templates_search_index ON pipeline_templates USING btree ( -- Name: repositories_search_index; Type: INDEX; Schema: public; Owner: -; Tablespace: -- -CREATE INDEX repositories_search_index ON repositories USING btree (uuid, owner_uuid, modified_by_client_uuid, modified_by_user_uuid, name, fetch_url, push_url); +CREATE INDEX repositories_search_index ON repositories USING btree (uuid, owner_uuid, modified_by_client_uuid, modified_by_user_uuid, name); -- @@ -2123,7 +2128,7 @@ CREATE UNIQUE INDEX unique_schema_migrations ON schema_migrations USING btree (v -- Name: users_search_index; Type: INDEX; Schema: public; Owner: -; Tablespace: -- -CREATE INDEX users_search_index ON users USING btree (uuid, owner_uuid, modified_by_client_uuid, modified_by_user_uuid, email, first_name, last_name, identity_url, default_owner_uuid); +CREATE INDEX users_search_index ON users USING btree (uuid, owner_uuid, modified_by_client_uuid, modified_by_user_uuid, email, first_name, last_name, identity_url, default_owner_uuid, username); -- @@ -2355,4 +2360,20 @@ 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'); + +INSERT INTO schema_migrations (version) VALUES ('20150312151136'); + +INSERT INTO schema_migrations (version) VALUES ('20150317132720'); + +INSERT INTO schema_migrations (version) VALUES ('20150324152204'); + +INSERT INTO schema_migrations (version) VALUES ('20150423145759'); \ No newline at end of file