1 |
-- |
2 |
-- PostgreSQL database dump |
3 |
-- |
4 |
|
5 |
SET client_encoding = 'UNICODE'; |
6 |
SET check_function_bodies = false; |
7 |
|
8 |
SET SESSION AUTHORIZATION 'apollock'; |
9 |
|
10 |
SET search_path = public, pg_catalog; |
11 |
|
12 |
-- |
13 |
-- Data for TOC entry 2 (OID 131944) |
14 |
-- Name: person; Type: TABLE DATA; Schema: public; Owner: apollock |
15 |
-- |
16 |
|
17 |
INSERT INTO person (personid, surname, firstname, othernames, birthdate, deathdate, sex, countryofbirth) VALUES ('1', 'Pollock', 'Andrew', 'Alexander', '1976-12-13', NULL, 'M', 'Australia'); |
18 |
INSERT INTO person (personid, surname, firstname, othernames, birthdate, deathdate, sex, countryofbirth) VALUES ('3', 'Pollock', 'Greg', 'John', '1980-07-31', NULL, 'M', 'Australia'); |
19 |
INSERT INTO person (personid, surname, firstname, othernames, birthdate, deathdate, sex, countryofbirth) VALUES ('2', 'Pollock', 'Anne', 'Margaret', '1983-12-17', NULL, 'F', 'Australia'); |
20 |
INSERT INTO person (personid, surname, firstname, othernames, birthdate, deathdate, sex, countryofbirth) VALUES ('4', 'Pollock', 'Ronald', 'Alex', '1941-12-31', NULL, 'M', 'Australia'); |
21 |
INSERT INTO person (personid, surname, firstname, othernames, birthdate, deathdate, sex, countryofbirth) VALUES ('5', 'Pollock', 'Shirley', 'Elsie', '1943-02-19', NULL, 'F', 'Australia'); |
22 |
INSERT INTO person (personid, surname, firstname, othernames, birthdate, deathdate, sex, countryofbirth) VALUES ('6', 'Roper', 'Sarah', 'Kay', '1980-12-19', NULL, 'F', 'Australia'); |
23 |
INSERT INTO person (personid, surname, firstname, othernames, birthdate, deathdate, sex, countryofbirth) VALUES ('7', 'Roper', 'Kay', NULL, '1956-03-16', NULL, 'F', 'Australia'); |
24 |
INSERT INTO person (personid, surname, firstname, othernames, birthdate, deathdate, sex, countryofbirth) VALUES ('8', 'Roper', 'Laurence', NULL, '1953-09-25', NULL, 'M', 'England'); |
25 |
INSERT INTO person (personid, surname, firstname, othernames, birthdate, deathdate, sex, countryofbirth) VALUES ('9', 'Rutter', 'Ralph', NULL, '1918-10-10', NULL, 'M', 'Australia'); |
26 |
INSERT INTO person (personid, surname, firstname, othernames, birthdate, deathdate, sex, countryofbirth) VALUES ('10', 'Rutter', 'Margaret', NULL, '1920-11-10', NULL, 'F', 'Australia'); |
27 |
INSERT INTO person (personid, surname, firstname, othernames, birthdate, deathdate, sex, countryofbirth) VALUES ('11', 'Roper', 'Mavis', NULL, '1936-06-12', NULL, 'F', 'England'); |
28 |
INSERT INTO person (personid, surname, firstname, othernames, birthdate, deathdate, sex, countryofbirth) VALUES ('12', 'Roper', 'Derek', NULL, '1933-07-20', NULL, 'M', 'England'); |
29 |
INSERT INTO person (personid, surname, firstname, othernames, birthdate, deathdate, sex, countryofbirth) VALUES ('13', 'Roper', 'Ben', NULL, '1979-02-24', NULL, 'M', 'Australia'); |
30 |
|
31 |
|
32 |
-- |
33 |
-- Data for TOC entry 3 (OID 131948) |
34 |
-- Name: parents; Type: TABLE DATA; Schema: public; Owner: apollock |
35 |
-- |
36 |
|
37 |
INSERT INTO parents (personid, motherid, fatherid) VALUES ('1', '5', '4'); |
38 |
INSERT INTO parents (personid, motherid, fatherid) VALUES ('2', '5', '4'); |
39 |
INSERT INTO parents (personid, motherid, fatherid) VALUES ('3', '5', '4'); |
40 |
INSERT INTO parents (personid, motherid, fatherid) VALUES ('6', '7', '8'); |
41 |
INSERT INTO parents (personid, motherid, fatherid) VALUES ('13', '7', '8'); |
42 |
INSERT INTO parents (personid, motherid, fatherid) VALUES ('8', '11', '12'); |
43 |
INSERT INTO parents (personid, motherid, fatherid) VALUES ('5', '10', '9'); |
44 |
|
45 |
|
46 |
-- |
47 |
-- Data for TOC entry 4 (OID 131964) |
48 |
-- Name: marriage; Type: TABLE DATA; Schema: public; Owner: apollock |
49 |
-- |
50 |
|
51 |
|
52 |
|