-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtables.sql
50 lines (39 loc) · 1.24 KB
/
tables.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
create table root(
r text primary key
);
create trigger check_unique_constraint
before insert or update on root
for each row execute procedure check_unique_constraint();
create table parent_a(
a text,
primary key(r, a)
) inherits(root);
create trigger check_unique_constraint
before insert or update on parent_a
for each row execute procedure check_unique_constraint();
create table parent_b(
b text unique,
unique(r, b)
) inherits(root);
create trigger check_unique_constraint
before insert or update on parent_b
for each row execute procedure check_unique_constraint();
create table child_c(
c text
) inherits(parent_a, parent_b);
create trigger check_unique_constraint
before insert or update on child_c
for each row execute procedure check_unique_constraint();
create table child_d(
d text unique,
primary key(a, b, d)
) inherits(parent_a, parent_b);
create trigger check_unique_constraint
before insert or update on child_d
for each row execute procedure check_unique_constraint();
create table grand_child_d(
e text
) inherits(child_d);
create trigger check_unique_constraint
before insert or update on grand_child_d
for each row execute procedure check_unique_constraint();