X-Git-Url: https://git.arvados.org/arvados.git/blobdiff_plain/908261de15c98553a4200f01aff1f26ef57c8fb8..f4ca9ad94a6bb006d1f3c7ba207837f1736d1247:/services/api/db/structure.sql diff --git a/services/api/db/structure.sql b/services/api/db/structure.sql index 0492c87e1a..e482e6e607 100644 --- a/services/api/db/structure.sql +++ b/services/api/db/structure.sql @@ -46,7 +46,8 @@ CREATE TABLE api_client_authorizations ( default_owner_uuid character varying(255), scopes text DEFAULT '--- - all -'::text NOT NULL +'::text NOT NULL, + uuid character varying(255) NOT NULL ); @@ -1414,7 +1415,7 @@ ALTER TABLE ONLY virtual_machines -- Name: api_client_authorizations_search_index; Type: INDEX; Schema: public; Owner: -; Tablespace: -- -CREATE INDEX api_client_authorizations_search_index ON api_client_authorizations USING btree (api_token, created_by_ip_address, last_used_by_ip_address, default_owner_uuid); +CREATE INDEX api_client_authorizations_search_index ON api_client_authorizations USING btree (api_token, created_by_ip_address, last_used_by_ip_address, default_owner_uuid, uuid); -- @@ -1529,6 +1530,13 @@ CREATE INDEX index_api_client_authorizations_on_expires_at ON api_client_authori CREATE INDEX index_api_client_authorizations_on_user_id ON api_client_authorizations USING btree (user_id); +-- +-- Name: index_api_client_authorizations_on_uuid; Type: INDEX; Schema: public; Owner: -; Tablespace: +-- + +CREATE UNIQUE INDEX index_api_client_authorizations_on_uuid ON api_client_authorizations USING btree (uuid); + + -- -- Name: index_api_clients_on_created_at; Type: INDEX; Schema: public; Owner: -; Tablespace: -- @@ -2568,4 +2576,8 @@ INSERT INTO schema_migrations (version) VALUES ('20151202151426'); INSERT INTO schema_migrations (version) VALUES ('20151215134304'); -INSERT INTO schema_migrations (version) VALUES ('20151229214707'); \ No newline at end of file +INSERT INTO schema_migrations (version) VALUES ('20151229214707'); + +INSERT INTO schema_migrations (version) VALUES ('20160208210629'); + +INSERT INTO schema_migrations (version) VALUES ('20160209155729'); \ No newline at end of file