-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathbackup_tar
343 lines (239 loc) · 7.77 KB
/
backup_tar
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
--
-- PostgreSQL database dump
--
-- Dumped from database version 9.5.1
-- Dumped by pg_dump version 9.5.1
-- Started on 2016-05-25 15:08:57 BST
SET statement_timeout = 0;
SET lock_timeout = 0;
SET client_encoding = 'UTF8';
SET standard_conforming_strings = on;
SET check_function_bodies = false;
SET client_min_messages = warning;
SET row_security = off;
--
-- TOC entry 1 (class 3079 OID 12623)
-- Name: plpgsql; Type: EXTENSION; Schema: -; Owner:
--
CREATE EXTENSION IF NOT EXISTS plpgsql WITH SCHEMA pg_catalog;
--
-- TOC entry 2406 (class 0 OID 0)
-- Dependencies: 1
-- Name: EXTENSION plpgsql; Type: COMMENT; Schema: -; Owner:
--
COMMENT ON EXTENSION plpgsql IS 'PL/pgSQL procedural language';
SET search_path = public, pg_catalog;
SET default_tablespace = '';
SET default_with_oids = false;
--
-- TOC entry 183 (class 1259 OID 17315)
-- Name: clinicians; Type: TABLE; Schema: public; Owner: postgres
--
CREATE TABLE clinicians (
clinician_id text NOT NULL,
password_hash text,
id integer NOT NULL
);
ALTER TABLE clinicians OWNER TO postgres;
--
-- TOC entry 186 (class 1259 OID 17351)
-- Name: clinicians_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--
CREATE SEQUENCE clinicians_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1;
ALTER TABLE clinicians_id_seq OWNER TO postgres;
--
-- TOC entry 2407 (class 0 OID 0)
-- Dependencies: 186
-- Name: clinicians_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--
ALTER SEQUENCE clinicians_id_seq OWNED BY clinicians.id;
--
-- TOC entry 185 (class 1259 OID 17342)
-- Name: clinicians_patients; Type: TABLE; Schema: public; Owner: postgres
--
CREATE TABLE clinicians_patients (
clinician_id text,
patient_id text,
id integer NOT NULL
);
ALTER TABLE clinicians_patients OWNER TO postgres;
--
-- TOC entry 188 (class 1259 OID 17371)
-- Name: clinicians_patients_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--
CREATE SEQUENCE clinicians_patients_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1;
ALTER TABLE clinicians_patients_id_seq OWNER TO postgres;
--
-- TOC entry 2408 (class 0 OID 0)
-- Dependencies: 188
-- Name: clinicians_patients_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--
ALTER SEQUENCE clinicians_patients_id_seq OWNED BY clinicians_patients.id;
--
-- TOC entry 184 (class 1259 OID 17331)
-- Name: letters; Type: TABLE; Schema: public; Owner: postgres
--
CREATE TABLE letters (
topic text,
recipient text,
patient_id text,
status text,
date_created date,
id integer NOT NULL
);
ALTER TABLE letters OWNER TO postgres;
--
-- TOC entry 187 (class 1259 OID 17361)
-- Name: letters_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--
CREATE SEQUENCE letters_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1;
ALTER TABLE letters_id_seq OWNER TO postgres;
--
-- TOC entry 2409 (class 0 OID 0)
-- Dependencies: 187
-- Name: letters_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--
ALTER SEQUENCE letters_id_seq OWNED BY letters.id;
--
-- TOC entry 181 (class 1259 OID 17295)
-- Name: patients; Type: TABLE; Schema: public; Owner: postgres
--
CREATE TABLE patients (
patient_id text NOT NULL,
first_name text,
last_name text,
email text,
mobile_number text,
password_hash text,
id integer NOT NULL
);
ALTER TABLE patients OWNER TO postgres;
--
-- TOC entry 182 (class 1259 OID 17303)
-- Name: patients_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--
CREATE SEQUENCE patients_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1;
ALTER TABLE patients_id_seq OWNER TO postgres;
--
-- TOC entry 2410 (class 0 OID 0)
-- Dependencies: 182
-- Name: patients_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--
ALTER SEQUENCE patients_id_seq OWNED BY patients.id;
--
-- TOC entry 2270 (class 2604 OID 17353)
-- Name: id; Type: DEFAULT; Schema: public; Owner: postgres
--
ALTER TABLE ONLY clinicians ALTER COLUMN id SET DEFAULT nextval('clinicians_id_seq'::regclass);
--
-- TOC entry 2272 (class 2604 OID 17373)
-- Name: id; Type: DEFAULT; Schema: public; Owner: postgres
--
ALTER TABLE ONLY clinicians_patients ALTER COLUMN id SET DEFAULT nextval('clinicians_patients_id_seq'::regclass);
--
-- TOC entry 2271 (class 2604 OID 17363)
-- Name: id; Type: DEFAULT; Schema: public; Owner: postgres
--
ALTER TABLE ONLY letters ALTER COLUMN id SET DEFAULT nextval('letters_id_seq'::regclass);
--
-- TOC entry 2269 (class 2604 OID 17305)
-- Name: id; Type: DEFAULT; Schema: public; Owner: postgres
--
ALTER TABLE ONLY patients ALTER COLUMN id SET DEFAULT nextval('patients_id_seq'::regclass);
--
-- TOC entry 2393 (class 0 OID 17315)
-- Dependencies: 183
-- Data for Name: clinicians; Type: TABLE DATA; Schema: public; Owner: postgres
--
INSERT INTO clinicians VALUES ('myuniqueid', '$2a$10$ARGOjAZWs6cLYWarXR0ANuXljuanhwei/ids9EzEiKi6MaCkBO.cy', 1);
INSERT INTO clinicians VALUES ('myuniqueid2', '$2a$10$XKwvUFEqH53Od/bJ6v9V5OxTnPIABRj2D7Dgwm0JqtP5eOwhvcuBC', 2);
--
-- TOC entry 2411 (class 0 OID 0)
-- Dependencies: 186
-- Name: clinicians_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--
SELECT pg_catalog.setval('clinicians_id_seq', 2, true);
--
-- TOC entry 2395 (class 0 OID 17342)
-- Dependencies: 185
-- Data for Name: clinicians_patients; Type: TABLE DATA; Schema: public; Owner: postgres
--
INSERT INTO clinicians_patients VALUES ('myuniqueid', '0434hg048', 1);
--
-- TOC entry 2412 (class 0 OID 0)
-- Dependencies: 188
-- Name: clinicians_patients_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--
SELECT pg_catalog.setval('clinicians_patients_id_seq', 1, true);
--
-- TOC entry 2394 (class 0 OID 17331)
-- Dependencies: 184
-- Data for Name: letters; Type: TABLE DATA; Schema: public; Owner: postgres
--
INSERT INTO letters VALUES ('Katherines Health', 'Mum', '0434hg048', 'Sent', '2016-01-08', 1);
INSERT INTO letters VALUES ('', 'Mum', 'fhew9aph983', 'Sent', '2015-06-03', 4);
--
-- TOC entry 2413 (class 0 OID 0)
-- Dependencies: 187
-- Name: letters_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--
SELECT pg_catalog.setval('letters_id_seq', 1, true);
--
-- TOC entry 2391 (class 0 OID 17295)
-- Dependencies: 181
-- Data for Name: patients; Type: TABLE DATA; Schema: public; Owner: postgres
--
INSERT INTO patients VALUES ('09876543', 'Rob', 'Stallion', 'biggansta@founder.com', '084385934', '$2a$10$O3RSih9BCi5Tm7wAHG2hTOE8n/aSNEdQx051eOeZkuuc5N.AJzLKu', 1);
INSERT INTO patients VALUES ('098765432', 'Virginie', 'Trubiano', 'vt@founer.com', '0434873582', '$2a$10$MN2HMzdZlaLnneTymhAa.Or/xVTutmAaDKePySfYSa5UFodK24mvu', 2);
INSERT INTO patients VALUES ('0434hg048', 'Katherine', 'Bow', 'stuff@stuff.com', '077738947305', 'soem_hash', 3);
--
-- TOC entry 2414 (class 0 OID 0)
-- Dependencies: 182
-- Name: patients_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--
SELECT pg_catalog.setval('patients_id_seq', 2, true);
--
-- TOC entry 2274 (class 2606 OID 17302)
-- Name: Patients_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--
ALTER TABLE ONLY patients
ADD CONSTRAINT "Patients_pkey" PRIMARY KEY (patient_id);
--
-- TOC entry 2276 (class 2606 OID 17323)
-- Name: clinicians_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--
ALTER TABLE ONLY clinicians
ADD CONSTRAINT clinicians_pkey PRIMARY KEY (clinician_id);
--
-- TOC entry 2405 (class 0 OID 0)
-- Dependencies: 6
-- Name: public; Type: ACL; Schema: -; Owner: postgres
--
REVOKE ALL ON SCHEMA public FROM PUBLIC;
REVOKE ALL ON SCHEMA public FROM postgres;
GRANT ALL ON SCHEMA public TO postgres;
GRANT ALL ON SCHEMA public TO PUBLIC;
-- Completed on 2016-05-25 15:08:57 BST
--
-- PostgreSQL database dump complete
--