X-Git-Url: https://git.arvados.org/arvados.git/blobdiff_plain/48006f58ed71ccff5de4f6aa0c1f19b7297cb0fb..8afc85aabb9563da4de17b0b5f7d4fe574e9ad8d:/services/api/db/structure.sql?ds=sidebyside diff --git a/services/api/db/structure.sql b/services/api/db/structure.sql index 27511145e9..0ab30c5e1c 100644 --- a/services/api/db/structure.sql +++ b/services/api/db/structure.sql @@ -768,7 +768,8 @@ CREATE TABLE users ( updated_at timestamp without time zone NOT NULL, default_owner_uuid character varying(255), is_active boolean DEFAULT false, - username character varying(255) + username character varying(255), + redirect_to_user_uuid character varying ); @@ -1877,6 +1878,13 @@ CREATE INDEX index_container_requests_on_requesting_container_uuid ON container_ CREATE UNIQUE INDEX index_container_requests_on_uuid ON container_requests USING btree (uuid); +-- +-- Name: index_containers_on_auth_uuid; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_containers_on_auth_uuid ON containers USING btree (auth_uuid); + + -- -- Name: index_containers_on_modified_at_uuid; Type: INDEX; Schema: public; Owner: - -- @@ -2714,7 +2722,7 @@ CREATE UNIQUE INDEX unique_schema_migrations ON schema_migrations USING btree (v -- Name: users_search_index; Type: INDEX; Schema: public; Owner: - -- -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); +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, redirect_to_user_uuid); -- @@ -3068,3 +3076,7 @@ INSERT INTO schema_migrations (version) VALUES ('20180228220311'); INSERT INTO schema_migrations (version) VALUES ('20180313180114'); +INSERT INTO schema_migrations (version) VALUES ('20180501182859'); + +INSERT INTO schema_migrations (version) VALUES ('20180514135529'); +