aboutsummaryrefslogtreecommitdiff
path: root/sqitch/pg
diff options
context:
space:
mode:
Diffstat (limited to 'sqitch/pg')
-rw-r--r--sqitch/pg/deploy/create_outputs.sql7
-rw-r--r--sqitch/pg/revert/create_outputs.sql7
-rw-r--r--sqitch/pg/verify/create_outputs.sql7
3 files changed, 21 insertions, 0 deletions
diff --git a/sqitch/pg/deploy/create_outputs.sql b/sqitch/pg/deploy/create_outputs.sql
new file mode 100644
index 0000000..5b15bc8
--- /dev/null
+++ b/sqitch/pg/deploy/create_outputs.sql
@@ -0,0 +1,7 @@
+-- Deploy guix-build-coordinator:create_outputs to pg
+
+BEGIN;
+
+-- XXX Add DDLs here.
+
+COMMIT;
diff --git a/sqitch/pg/revert/create_outputs.sql b/sqitch/pg/revert/create_outputs.sql
new file mode 100644
index 0000000..84e302e
--- /dev/null
+++ b/sqitch/pg/revert/create_outputs.sql
@@ -0,0 +1,7 @@
+-- Revert guix-build-coordinator:create_outputs from pg
+
+BEGIN;
+
+-- XXX Add DDLs here.
+
+COMMIT;
diff --git a/sqitch/pg/verify/create_outputs.sql b/sqitch/pg/verify/create_outputs.sql
new file mode 100644
index 0000000..3215509
--- /dev/null
+++ b/sqitch/pg/verify/create_outputs.sql
@@ -0,0 +1,7 @@
+-- Verify guix-build-coordinator:create_outputs on pg
+
+BEGIN;
+
+-- XXX Add verifications here.
+
+ROLLBACK;