-
Notifications
You must be signed in to change notification settings - Fork 3
/
schema.sql
303 lines (205 loc) · 7.26 KB
/
schema.sql
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
--
-- PostgreSQL database dump
--
-- Dumped from database version 14.4 (Debian 14.4-1.pgdg110+1)
-- Dumped by pg_dump version 14.4 (Debian 14.4-1.pgdg110+1)
SET statement_timeout = 0;
SET lock_timeout = 0;
SET idle_in_transaction_session_timeout = 0;
SET client_encoding = 'UTF8';
SET standard_conforming_strings = on;
SELECT pg_catalog.set_config('search_path', '', false);
SET check_function_bodies = false;
SET xmloption = content;
SET client_min_messages = warning;
SET row_security = off;
SET default_tablespace = '';
SET default_table_access_method = heap;
--
-- Name: assessments; Type: TABLE; Schema: public; Owner: dbadmin
--
CREATE TABLE public.assessments (
id uuid NOT NULL,
name character varying(255),
metadata_id uuid
);
ALTER TABLE public.assessments OWNER TO dbadmin;
--
-- Name: catalogs; Type: TABLE; Schema: public; Owner: dbadmin
--
CREATE TABLE public.catalogs (
id uuid NOT NULL,
name character varying(255),
metadata_id uuid,
content text
);
ALTER TABLE public.catalogs OWNER TO dbadmin;
--
-- Name: controls; Type: TABLE; Schema: public; Owner: dbadmin
--
CREATE TABLE public.controls (
id uuid NOT NULL,
name character varying(255),
severity character varying(50),
profile_id uuid,
metadata_id uuid
);
ALTER TABLE public.controls OWNER TO dbadmin;
--
-- Name: metadata; Type: TABLE; Schema: public; Owner: dbadmin
--
CREATE TABLE public.metadata (
id uuid NOT NULL,
created_at timestamp without time zone,
updated_at timestamp without time zone,
version character varying(50),
description text
);
ALTER TABLE public.metadata OWNER TO dbadmin;
--
-- Name: profiles; Type: TABLE; Schema: public; Owner: dbadmin
--
CREATE TABLE public.profiles (
id uuid NOT NULL,
name character varying(255),
metadata_id uuid,
catalog_id uuid
);
ALTER TABLE public.profiles OWNER TO dbadmin;
--
-- Name: results; Type: TABLE; Schema: public; Owner: dbadmin
--
CREATE TABLE public.results (
id uuid NOT NULL,
name character varying(255),
outcome character varying(255),
instruction text,
rationale text,
control_id uuid,
metadata_id uuid,
subject_id uuid,
assessment_id uuid
);
ALTER TABLE public.results OWNER TO dbadmin;
--
-- Name: schema_migrations; Type: TABLE; Schema: public; Owner: dbadmin
--
CREATE TABLE public.schema_migrations (
version bigint NOT NULL,
dirty boolean NOT NULL
);
ALTER TABLE public.schema_migrations OWNER TO dbadmin;
--
-- Name: subjects; Type: TABLE; Schema: public; Owner: dbadmin
--
CREATE TABLE public.subjects (
id uuid NOT NULL,
name character varying(255),
type character varying(50),
parent_id uuid,
metadata_id uuid
);
ALTER TABLE public.subjects OWNER TO dbadmin;
--
-- Name: assessments assessments_pkey; Type: CONSTRAINT; Schema: public; Owner: dbadmin
--
ALTER TABLE ONLY public.assessments
ADD CONSTRAINT assessments_pkey PRIMARY KEY (id);
--
-- Name: catalogs catalogs_pkey; Type: CONSTRAINT; Schema: public; Owner: dbadmin
--
ALTER TABLE ONLY public.catalogs
ADD CONSTRAINT catalogs_pkey PRIMARY KEY (id);
--
-- Name: controls controls_pkey; Type: CONSTRAINT; Schema: public; Owner: dbadmin
--
ALTER TABLE ONLY public.controls
ADD CONSTRAINT controls_pkey PRIMARY KEY (id);
--
-- Name: metadata metadata_pkey; Type: CONSTRAINT; Schema: public; Owner: dbadmin
--
ALTER TABLE ONLY public.metadata
ADD CONSTRAINT metadata_pkey PRIMARY KEY (id);
--
-- Name: profiles profiles_pkey; Type: CONSTRAINT; Schema: public; Owner: dbadmin
--
ALTER TABLE ONLY public.profiles
ADD CONSTRAINT profiles_pkey PRIMARY KEY (id);
--
-- Name: results results_pkey; Type: CONSTRAINT; Schema: public; Owner: dbadmin
--
ALTER TABLE ONLY public.results
ADD CONSTRAINT results_pkey PRIMARY KEY (id);
--
-- Name: schema_migrations schema_migrations_pkey; Type: CONSTRAINT; Schema: public; Owner: dbadmin
--
ALTER TABLE ONLY public.schema_migrations
ADD CONSTRAINT schema_migrations_pkey PRIMARY KEY (version);
--
-- Name: subjects subjects_pkey; Type: CONSTRAINT; Schema: public; Owner: dbadmin
--
ALTER TABLE ONLY public.subjects
ADD CONSTRAINT subjects_pkey PRIMARY KEY (id);
--
-- Name: assessments fk_assessments_metadata_id; Type: FK CONSTRAINT; Schema: public; Owner: dbadmin
--
ALTER TABLE ONLY public.assessments
ADD CONSTRAINT fk_assessments_metadata_id FOREIGN KEY (metadata_id) REFERENCES public.metadata(id);
--
-- Name: catalogs fk_catalogs_metadata_id; Type: FK CONSTRAINT; Schema: public; Owner: dbadmin
--
ALTER TABLE ONLY public.catalogs
ADD CONSTRAINT fk_catalogs_metadata_id FOREIGN KEY (metadata_id) REFERENCES public.metadata(id);
--
-- Name: controls fk_controls_metadata_id; Type: FK CONSTRAINT; Schema: public; Owner: dbadmin
--
ALTER TABLE ONLY public.controls
ADD CONSTRAINT fk_controls_metadata_id FOREIGN KEY (metadata_id) REFERENCES public.metadata(id);
--
-- Name: controls fk_controls_profile_id; Type: FK CONSTRAINT; Schema: public; Owner: dbadmin
--
ALTER TABLE ONLY public.controls
ADD CONSTRAINT fk_controls_profile_id FOREIGN KEY (profile_id) REFERENCES public.profiles(id);
--
-- Name: profiles fk_profiles_catalog_id; Type: FK CONSTRAINT; Schema: public; Owner: dbadmin
--
ALTER TABLE ONLY public.profiles
ADD CONSTRAINT fk_profiles_catalog_id FOREIGN KEY (catalog_id) REFERENCES public.catalogs(id);
--
-- Name: profiles fk_profiles_metadata_id; Type: FK CONSTRAINT; Schema: public; Owner: dbadmin
--
ALTER TABLE ONLY public.profiles
ADD CONSTRAINT fk_profiles_metadata_id FOREIGN KEY (metadata_id) REFERENCES public.metadata(id);
--
-- Name: results fk_results_assessment_id; Type: FK CONSTRAINT; Schema: public; Owner: dbadmin
--
ALTER TABLE ONLY public.results
ADD CONSTRAINT fk_results_assessment_id FOREIGN KEY (assessment_id) REFERENCES public.assessments(id);
--
-- Name: results fk_results_control_id; Type: FK CONSTRAINT; Schema: public; Owner: dbadmin
--
ALTER TABLE ONLY public.results
ADD CONSTRAINT fk_results_control_id FOREIGN KEY (control_id) REFERENCES public.controls(id);
--
-- Name: results fk_results_metadata_id; Type: FK CONSTRAINT; Schema: public; Owner: dbadmin
--
ALTER TABLE ONLY public.results
ADD CONSTRAINT fk_results_metadata_id FOREIGN KEY (metadata_id) REFERENCES public.metadata(id);
--
-- Name: results fk_results_subject_id; Type: FK CONSTRAINT; Schema: public; Owner: dbadmin
--
ALTER TABLE ONLY public.results
ADD CONSTRAINT fk_results_subject_id FOREIGN KEY (subject_id) REFERENCES public.subjects(id);
--
-- Name: subjects fk_subjects_metadata_id; Type: FK CONSTRAINT; Schema: public; Owner: dbadmin
--
ALTER TABLE ONLY public.subjects
ADD CONSTRAINT fk_subjects_metadata_id FOREIGN KEY (metadata_id) REFERENCES public.metadata(id);
--
-- Name: subjects fk_subjects_parent_id; Type: FK CONSTRAINT; Schema: public; Owner: dbadmin
--
ALTER TABLE ONLY public.subjects
ADD CONSTRAINT fk_subjects_parent_id FOREIGN KEY (parent_id) REFERENCES public.subjects(id);
--
-- PostgreSQL database dump complete
--