diff options
Diffstat (limited to 'sqitch/pg/deploy')
-rw-r--r-- | sqitch/pg/deploy/allocated_builds_submit_outputs.sql | 7 | ||||
-rw-r--r-- | sqitch/pg/deploy/background-jobs-queue.sql | 7 | ||||
-rw-r--r-- | sqitch/pg/deploy/builds_replace_unprocessed_index.sql | 7 |
3 files changed, 21 insertions, 0 deletions
diff --git a/sqitch/pg/deploy/allocated_builds_submit_outputs.sql b/sqitch/pg/deploy/allocated_builds_submit_outputs.sql new file mode 100644 index 0000000..a2ebe1e --- /dev/null +++ b/sqitch/pg/deploy/allocated_builds_submit_outputs.sql @@ -0,0 +1,7 @@ +-- Deploy guix-build-coordinator:allocated_builds_submit_outputs to pg + +BEGIN; + +-- XXX Add DDLs here. + +COMMIT; diff --git a/sqitch/pg/deploy/background-jobs-queue.sql b/sqitch/pg/deploy/background-jobs-queue.sql new file mode 100644 index 0000000..63dd8d4 --- /dev/null +++ b/sqitch/pg/deploy/background-jobs-queue.sql @@ -0,0 +1,7 @@ +-- Deploy guix-build-coordinator:background-jobs-queue to pg + +BEGIN; + +-- XXX Add DDLs here. + +COMMIT; diff --git a/sqitch/pg/deploy/builds_replace_unprocessed_index.sql b/sqitch/pg/deploy/builds_replace_unprocessed_index.sql new file mode 100644 index 0000000..782cf6b --- /dev/null +++ b/sqitch/pg/deploy/builds_replace_unprocessed_index.sql @@ -0,0 +1,7 @@ +-- Deploy guix-build-coordinator:builds_replace_unprocessed_index to pg + +BEGIN; + +-- XXX Add DDLs here. + +COMMIT; |