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