aboutsummaryrefslogtreecommitdiff
path: root/sqitch/pg
diff options
context:
space:
mode:
authorChristopher Baines <mail@cbaines.net>2020-04-09 21:09:19 +0100
committerChristopher Baines <mail@cbaines.net>2020-04-10 20:34:47 +0100
commit23e97d15becc5849157b9f215fac240be07ed717 (patch)
tree8b3f4492bc2393c38608d1484d62443df93072f5 /sqitch/pg
parentd277fa10b8492dc8e34d3763cc70f2b6665c71ad (diff)
downloadbuild-coordinator-23e97d15becc5849157b9f215fac240be07ed717.tar
build-coordinator-23e97d15becc5849157b9f215fac240be07ed717.tar.gz
Add initial agent related tables
Diffstat (limited to 'sqitch/pg')
-rw-r--r--sqitch/pg/deploy/initial_agent_tables.sql7
-rw-r--r--sqitch/pg/revert/initial_agent_tables.sql7
-rw-r--r--sqitch/pg/verify/initial_agent_tables.sql7
3 files changed, 21 insertions, 0 deletions
diff --git a/sqitch/pg/deploy/initial_agent_tables.sql b/sqitch/pg/deploy/initial_agent_tables.sql
new file mode 100644
index 0000000..0db0fab
--- /dev/null
+++ b/sqitch/pg/deploy/initial_agent_tables.sql
@@ -0,0 +1,7 @@
+-- Deploy guix-build-coordinator:initial_agent_tables to pg
+
+BEGIN;
+
+-- XXX Add DDLs here.
+
+COMMIT;
diff --git a/sqitch/pg/revert/initial_agent_tables.sql b/sqitch/pg/revert/initial_agent_tables.sql
new file mode 100644
index 0000000..a8ab40d
--- /dev/null
+++ b/sqitch/pg/revert/initial_agent_tables.sql
@@ -0,0 +1,7 @@
+-- Revert guix-build-coordinator:initial_agent_tables from pg
+
+BEGIN;
+
+-- XXX Add DDLs here.
+
+COMMIT;
diff --git a/sqitch/pg/verify/initial_agent_tables.sql b/sqitch/pg/verify/initial_agent_tables.sql
new file mode 100644
index 0000000..0dbff87
--- /dev/null
+++ b/sqitch/pg/verify/initial_agent_tables.sql
@@ -0,0 +1,7 @@
+-- Verify guix-build-coordinator:initial_agent_tables on pg
+
+BEGIN;
+
+-- XXX Add verifications here.
+
+ROLLBACK;