aboutsummaryrefslogtreecommitdiff
path: root/sqitch/pg
diff options
context:
space:
mode:
authorChristopher Baines <mail@cbaines.net>2020-04-06 19:54:41 +0100
committerChristopher Baines <mail@cbaines.net>2020-04-10 20:34:47 +0100
commitf0524be43ea57996c2c5ddf1b859a30fb887bfe2 (patch)
treed34c16445c81e5cffb3a85075e23528118900694 /sqitch/pg
parent75290ee2db7452168c966fd9585c4e12f0c2e849 (diff)
downloadbuild-coordinator-f0524be43ea57996c2c5ddf1b859a30fb887bfe2.tar
build-coordinator-f0524be43ea57996c2c5ddf1b859a30fb887bfe2.tar.gz
Add a migration to create the builds table
Diffstat (limited to 'sqitch/pg')
-rw-r--r--sqitch/pg/deploy/create_builds.sql7
-rw-r--r--sqitch/pg/revert/create_builds.sql7
-rw-r--r--sqitch/pg/verify/create_builds.sql7
3 files changed, 21 insertions, 0 deletions
diff --git a/sqitch/pg/deploy/create_builds.sql b/sqitch/pg/deploy/create_builds.sql
new file mode 100644
index 0000000..993dd66
--- /dev/null
+++ b/sqitch/pg/deploy/create_builds.sql
@@ -0,0 +1,7 @@
+-- Deploy guix-build-coordinator:create_builds to pg
+
+BEGIN;
+
+-- XXX Add DDLs here.
+
+COMMIT;
diff --git a/sqitch/pg/revert/create_builds.sql b/sqitch/pg/revert/create_builds.sql
new file mode 100644
index 0000000..f97de87
--- /dev/null
+++ b/sqitch/pg/revert/create_builds.sql
@@ -0,0 +1,7 @@
+-- Revert guix-build-coordinator:create_builds from pg
+
+BEGIN;
+
+-- XXX Add DDLs here.
+
+COMMIT;
diff --git a/sqitch/pg/verify/create_builds.sql b/sqitch/pg/verify/create_builds.sql
new file mode 100644
index 0000000..0a56dab
--- /dev/null
+++ b/sqitch/pg/verify/create_builds.sql
@@ -0,0 +1,7 @@
+-- Verify guix-build-coordinator:create_builds on pg
+
+BEGIN;
+
+-- XXX Add verifications here.
+
+ROLLBACK;