-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdb.sql
More file actions
526 lines (344 loc) · 11.3 KB
/
db.sql
File metadata and controls
526 lines (344 loc) · 11.3 KB
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
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
--
-- PostgreSQL database dump
--
-- Dumped from database version 10.5 (Ubuntu 10.5-0ubuntu0.18.04)
-- Dumped by pg_dump version 10.5
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 client_min_messages = warning;
SET row_security = off;
--
-- Name: plpgsql; Type: EXTENSION; Schema: -; Owner:
--
CREATE EXTENSION IF NOT EXISTS plpgsql WITH SCHEMA pg_catalog;
--
-- Name: EXTENSION plpgsql; Type: COMMENT; Schema: -; Owner:
--
COMMENT ON EXTENSION plpgsql IS 'PL/pgSQL procedural language';
--
-- Name: key_data_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--
CREATE SEQUENCE public.key_data_id_seq
START WITH 100
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1;
ALTER TABLE public.key_data_id_seq OWNER TO postgres;
SET default_tablespace = '';
SET default_with_oids = false;
--
-- Name: key_data; Type: TABLE; Schema: public; Owner: postgres
--
CREATE TABLE public.key_data (
id integer DEFAULT nextval('public.key_data_id_seq'::regclass) NOT NULL,
key_type text,
key_room integer,
current_holder integer,
storage_location text
);
ALTER TABLE public.key_data OWNER TO postgres;
--
-- Name: leases; Type: TABLE; Schema: public; Owner: iksf
--
CREATE TABLE public.leases (
id integer NOT NULL,
key_id integer,
start_ts timestamp without time zone,
end_ts timestamp without time zone
);
ALTER TABLE public.leases OWNER TO iksf;
--
-- Name: leases_id_seq; Type: SEQUENCE; Schema: public; Owner: iksf
--
CREATE SEQUENCE public.leases_id_seq
AS integer
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1;
ALTER TABLE public.leases_id_seq OWNER TO iksf;
--
-- Name: leases_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: iksf
--
ALTER SEQUENCE public.leases_id_seq OWNED BY public.leases.id;
--
-- Name: permission_group_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--
CREATE SEQUENCE public.permission_group_id_seq
START WITH 100
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1;
ALTER TABLE public.permission_group_id_seq OWNER TO postgres;
--
-- Name: permission_group_membership; Type: TABLE; Schema: public; Owner: postgres
--
CREATE TABLE public.permission_group_membership (
permission_group integer,
user_id integer,
start_timestamp timestamp without time zone,
end_timestamp timestamp without time zone
);
ALTER TABLE public.permission_group_membership OWNER TO postgres;
--
-- Name: permission_group_white; Type: TABLE; Schema: public; Owner: postgres
--
CREATE TABLE public.permission_group_white (
id integer NOT NULL,
key_id integer,
room_id integer,
group_id integer
);
ALTER TABLE public.permission_group_white OWNER TO postgres;
--
-- Name: permission_group_white_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--
CREATE SEQUENCE public.permission_group_white_id_seq
AS integer
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1;
ALTER TABLE public.permission_group_white_id_seq OWNER TO postgres;
--
-- Name: permission_group_white_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--
ALTER SEQUENCE public.permission_group_white_id_seq OWNED BY public.permission_group_white.id;
--
-- Name: permission_groups; Type: TABLE; Schema: public; Owner: postgres
--
CREATE TABLE public.permission_groups (
id integer NOT NULL,
name text
);
ALTER TABLE public.permission_groups OWNER TO postgres;
--
-- Name: permission_groups_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--
CREATE SEQUENCE public.permission_groups_id_seq
AS integer
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1;
ALTER TABLE public.permission_groups_id_seq OWNER TO postgres;
--
-- Name: permission_groups_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--
ALTER SEQUENCE public.permission_groups_id_seq OWNED BY public.permission_groups.id;
--
-- Name: rooms_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--
CREATE SEQUENCE public.rooms_id_seq
START WITH 100
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1;
ALTER TABLE public.rooms_id_seq OWNER TO postgres;
--
-- Name: rooms; Type: TABLE; Schema: public; Owner: postgres
--
CREATE TABLE public.rooms (
id integer DEFAULT nextval('public.rooms_id_seq'::regclass) NOT NULL,
name text
);
ALTER TABLE public.rooms OWNER TO postgres;
--
-- Name: users; Type: TABLE; Schema: public; Owner: postgres
--
CREATE TABLE public.users (
id integer NOT NULL,
name text
);
ALTER TABLE public.users OWNER TO postgres;
--
-- Name: users_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--
CREATE SEQUENCE public.users_id_seq
START WITH 100
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1;
ALTER TABLE public.users_id_seq OWNER TO postgres;
--
-- Name: users_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--
ALTER SEQUENCE public.users_id_seq OWNED BY public.users.id;
--
-- Name: leases id; Type: DEFAULT; Schema: public; Owner: iksf
--
ALTER TABLE ONLY public.leases ALTER COLUMN id SET DEFAULT nextval('public.leases_id_seq'::regclass);
--
-- Name: permission_group_white id; Type: DEFAULT; Schema: public; Owner: postgres
--
ALTER TABLE ONLY public.permission_group_white ALTER COLUMN id SET DEFAULT nextval('public.permission_group_white_id_seq'::regclass);
--
-- Name: permission_groups id; Type: DEFAULT; Schema: public; Owner: postgres
--
ALTER TABLE ONLY public.permission_groups ALTER COLUMN id SET DEFAULT nextval('public.permission_groups_id_seq'::regclass);
--
-- Name: users id; Type: DEFAULT; Schema: public; Owner: postgres
--
ALTER TABLE ONLY public.users ALTER COLUMN id SET DEFAULT nextval('public.users_id_seq'::regclass);
--
-- Data for Name: key_data; Type: TABLE DATA; Schema: public; Owner: postgres
--
COPY public.key_data (id, key_type, key_room, current_holder, storage_location) FROM stdin;
118 df 100 100 sdf
122 dfg 100 100 dfgs
120 dsf 100 101 aaa
117 dsf 100 100 dsf
121 gfhh 100 100 hhh
119 dfgggggg 100 100 ggg
\.
--
-- Data for Name: leases; Type: TABLE DATA; Schema: public; Owner: iksf
--
COPY public.leases (id, key_id, start_ts, end_ts) FROM stdin;
\.
--
-- Data for Name: permission_group_membership; Type: TABLE DATA; Schema: public; Owner: postgres
--
COPY public.permission_group_membership (permission_group, user_id, start_timestamp, end_timestamp) FROM stdin;
\.
--
-- Data for Name: permission_group_white; Type: TABLE DATA; Schema: public; Owner: postgres
--
COPY public.permission_group_white (id, key_id, room_id, group_id) FROM stdin;
\.
--
-- Data for Name: permission_groups; Type: TABLE DATA; Schema: public; Owner: postgres
--
COPY public.permission_groups (id, name) FROM stdin;
\.
--
-- Data for Name: rooms; Type: TABLE DATA; Schema: public; Owner: postgres
--
COPY public.rooms (id, name) FROM stdin;
100 N533
\.
--
-- Data for Name: users; Type: TABLE DATA; Schema: public; Owner: postgres
--
COPY public.users (id, name) FROM stdin;
100 Kieran McKenzie
101 Jordan Low
\.
--
-- Name: key_data_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--
SELECT pg_catalog.setval('public.key_data_id_seq', 122, true);
--
-- Name: leases_id_seq; Type: SEQUENCE SET; Schema: public; Owner: iksf
--
SELECT pg_catalog.setval('public.leases_id_seq', 1, false);
--
-- Name: permission_group_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--
SELECT pg_catalog.setval('public.permission_group_id_seq', 100, false);
--
-- Name: permission_group_white_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--
SELECT pg_catalog.setval('public.permission_group_white_id_seq', 1, false);
--
-- Name: permission_groups_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--
SELECT pg_catalog.setval('public.permission_groups_id_seq', 1, false);
--
-- Name: rooms_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--
SELECT pg_catalog.setval('public.rooms_id_seq', 100, true);
--
-- Name: users_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--
SELECT pg_catalog.setval('public.users_id_seq', 101, true);
--
-- Name: key_data key_data_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--
ALTER TABLE ONLY public.key_data
ADD CONSTRAINT key_data_pkey PRIMARY KEY (id);
--
-- Name: leases leases_pkey; Type: CONSTRAINT; Schema: public; Owner: iksf
--
ALTER TABLE ONLY public.leases
ADD CONSTRAINT leases_pkey PRIMARY KEY (id);
--
-- Name: permission_group_white permission_group_white_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--
ALTER TABLE ONLY public.permission_group_white
ADD CONSTRAINT permission_group_white_pkey PRIMARY KEY (id);
--
-- Name: permission_groups permission_groups_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--
ALTER TABLE ONLY public.permission_groups
ADD CONSTRAINT permission_groups_pkey PRIMARY KEY (id);
--
-- Name: rooms rooms_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--
ALTER TABLE ONLY public.rooms
ADD CONSTRAINT rooms_pkey PRIMARY KEY (id);
--
-- Name: users users_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--
ALTER TABLE ONLY public.users
ADD CONSTRAINT users_pkey PRIMARY KEY (id);
--
-- Name: key_data key_data_current_holder_fkey; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--
ALTER TABLE ONLY public.key_data
ADD CONSTRAINT key_data_current_holder_fkey FOREIGN KEY (current_holder) REFERENCES public.users(id);
--
-- Name: key_data key_data_key_room_fkey; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--
ALTER TABLE ONLY public.key_data
ADD CONSTRAINT key_data_key_room_fkey FOREIGN KEY (key_room) REFERENCES public.rooms(id);
--
-- Name: leases leases_key_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: iksf
--
ALTER TABLE ONLY public.leases
ADD CONSTRAINT leases_key_id_fkey FOREIGN KEY (key_id) REFERENCES public.key_data(id);
--
-- Name: permission_group_white permission_group_white_group_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--
ALTER TABLE ONLY public.permission_group_white
ADD CONSTRAINT permission_group_white_group_id_fkey FOREIGN KEY (group_id) REFERENCES public.permission_groups(id);
--
-- Name: permission_group_white permission_group_white_room_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--
ALTER TABLE ONLY public.permission_group_white
ADD CONSTRAINT permission_group_white_room_id_fkey FOREIGN KEY (room_id) REFERENCES public.rooms(id);
--
-- Name: SEQUENCE key_data_id_seq; Type: ACL; Schema: public; Owner: postgres
--
GRANT ALL ON SEQUENCE public.key_data_id_seq TO iksf;
--
-- Name: SEQUENCE permission_group_id_seq; Type: ACL; Schema: public; Owner: postgres
--
GRANT ALL ON SEQUENCE public.permission_group_id_seq TO iksf;
--
-- Name: TABLE permission_group_membership; Type: ACL; Schema: public; Owner: postgres
--
GRANT ALL ON TABLE public.permission_group_membership TO iksf;
--
-- Name: SEQUENCE rooms_id_seq; Type: ACL; Schema: public; Owner: postgres
--
GRANT ALL ON SEQUENCE public.rooms_id_seq TO iksf;
--
-- Name: TABLE rooms; Type: ACL; Schema: public; Owner: postgres
--
GRANT ALL ON TABLE public.rooms TO iksf;
--
-- PostgreSQL database dump complete
--