aboutsummaryrefslogtreecommitdiffstats
path: root/db
diff options
context:
space:
mode:
Diffstat (limited to 'db')
-rw-r--r--db/schema.sql1
-rw-r--r--db/schema_0034-add-body-parent.sql5
2 files changed, 6 insertions, 0 deletions
diff --git a/db/schema.sql b/db/schema.sql
index e8ec42859..d8cc0675a 100644
--- a/db/schema.sql
+++ b/db/schema.sql
@@ -55,6 +55,7 @@ create table users (
create table body (
id serial primary key,
name text not null,
+ parent integer references body(id),
endpoint text,
jurisdiction text,
api_key text,
diff --git a/db/schema_0034-add-body-parent.sql b/db/schema_0034-add-body-parent.sql
new file mode 100644
index 000000000..9360fbcb3
--- /dev/null
+++ b/db/schema_0034-add-body-parent.sql
@@ -0,0 +1,5 @@
+begin;
+
+ALTER TABLE body ADD parent INTEGER REFERENCES body(id);
+
+commit;