[ARVADOS] created: 5230dcc75bf9fe8addc321b79c828cc370eee07b
Git user
git at public.curoverse.com
Wed Sep 13 10:16:28 EDT 2017
at 5230dcc75bf9fe8addc321b79c828cc370eee07b (commit)
commit 5230dcc75bf9fe8addc321b79c828cc370eee07b
Author: Tom Clegg <tclegg at veritasgenetics.com>
Date: Wed Sep 13 10:15:02 2017 -0400
12032: Update db/structure.sql.
Arvados-DCO-1.1-Signed-off-by: Tom Clegg <tclegg at veritasgenetics.com>
diff --git a/services/api/db/structure.sql b/services/api/db/structure.sql
index 4a874fb..ba91b30 100644
--- a/services/api/db/structure.sql
+++ b/services/api/db/structure.sql
@@ -710,23 +710,11 @@ ALTER SEQUENCE links_id_seq OWNED BY links.id;
--
--- Name: logs_id_seq; Type: SEQUENCE; Schema: public; Owner: -
---
-
-CREATE SEQUENCE logs_id_seq
- START WITH 1
- INCREMENT BY 1
- NO MINVALUE
- NO MAXVALUE
- CACHE 1;
-
-
---
-- Name: logs; Type: TABLE; Schema: public; Owner: -
--
CREATE TABLE logs (
- id integer DEFAULT nextval('logs_id_seq'::regclass) NOT NULL,
+ id integer NOT NULL,
uuid character varying(255),
owner_uuid character varying(255),
modified_by_client_uuid character varying(255),
@@ -744,6 +732,25 @@ CREATE TABLE logs (
--
+-- Name: logs_id_seq; Type: SEQUENCE; Schema: public; Owner: -
+--
+
+CREATE SEQUENCE logs_id_seq
+ START WITH 1
+ INCREMENT BY 1
+ NO MINVALUE
+ NO MAXVALUE
+ CACHE 1;
+
+
+--
+-- Name: logs_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: -
+--
+
+ALTER SEQUENCE logs_id_seq OWNED BY logs.id;
+
+
+--
-- Name: users; Type: TABLE; Schema: public; Owner: -
--
@@ -957,30 +964,6 @@ ALTER SEQUENCE pipeline_templates_id_seq OWNED BY pipeline_templates.id;
--
--- Name: read_permissions; Type: VIEW; Schema: public; Owner: -
---
-
-CREATE VIEW read_permissions AS
- WITH RECURSIVE read_permissions(follow, user_uuid, readable_uuid) AS (
- SELECT true AS bool,
- users.uuid,
- users.uuid
- FROM users
- UNION
- SELECT (((links.name)::text = 'can_manage'::text) OR ((links.head_uuid)::text ~~ 'su92l-j7d0g-%'::text)) AS follow,
- rp.user_uuid,
- links.head_uuid
- FROM read_permissions rp,
- links
- WHERE (rp.follow AND ((links.tail_uuid)::text = (rp.readable_uuid)::text))
- )
- SELECT read_permissions.follow,
- read_permissions.user_uuid,
- read_permissions.readable_uuid
- FROM read_permissions;
-
-
---
-- Name: repositories; Type: TABLE; Schema: public; Owner: -
--
@@ -1017,18 +1000,6 @@ ALTER SEQUENCE repositories_id_seq OWNED BY repositories.id;
--
--- Name: rp_cache; Type: MATERIALIZED VIEW; Schema: public; Owner: -
---
-
-CREATE MATERIALIZED VIEW rp_cache AS
- SELECT read_permissions.follow,
- read_permissions.user_uuid,
- read_permissions.readable_uuid
- FROM read_permissions
- WITH NO DATA;
-
-
---
-- Name: schema_migrations; Type: TABLE; Schema: public; Owner: -
--
@@ -1310,6 +1281,13 @@ ALTER TABLE ONLY links ALTER COLUMN id SET DEFAULT nextval('links_id_seq'::regcl
--
+-- Name: logs id; Type: DEFAULT; Schema: public; Owner: -
+--
+
+ALTER TABLE ONLY logs ALTER COLUMN id SET DEFAULT nextval('logs_id_seq'::regclass);
+
+
+--
-- Name: nodes id; Type: DEFAULT; Schema: public; Owner: -
--
@@ -2644,13 +2622,6 @@ CREATE INDEX specimens_search_index ON specimens USING btree (uuid, owner_uuid,
--
--- Name: test_1; Type: INDEX; Schema: public; Owner: -
---
-
-CREATE INDEX test_1 ON collections USING btree (id) WHERE (delete_at IS NULL);
-
-
---
-- Name: traits_search_index; Type: INDEX; Schema: public; Owner: -
--
-----------------------------------------------------------------------
hooks/post-receive
--
More information about the arvados-commits
mailing list