diff options
Diffstat (limited to 'sqitch/pg')
-rw-r--r-- | sqitch/pg/deploy/allocator_related_indexes.sql | 7 | ||||
-rw-r--r-- | sqitch/pg/revert/allocator_related_indexes.sql | 7 | ||||
-rw-r--r-- | sqitch/pg/verify/allocator_related_indexes.sql | 7 |
3 files changed, 21 insertions, 0 deletions
diff --git a/sqitch/pg/deploy/allocator_related_indexes.sql b/sqitch/pg/deploy/allocator_related_indexes.sql new file mode 100644 index 0000000..6e4f902 --- /dev/null +++ b/sqitch/pg/deploy/allocator_related_indexes.sql @@ -0,0 +1,7 @@ +-- Deploy guix-build-coordinator:allocator_related_indexes to pg + +BEGIN; + +-- XXX Add DDLs here. + +COMMIT; diff --git a/sqitch/pg/revert/allocator_related_indexes.sql b/sqitch/pg/revert/allocator_related_indexes.sql new file mode 100644 index 0000000..fead415 --- /dev/null +++ b/sqitch/pg/revert/allocator_related_indexes.sql @@ -0,0 +1,7 @@ +-- Revert guix-build-coordinator:allocator_related_indexes from pg + +BEGIN; + +-- XXX Add DDLs here. + +COMMIT; diff --git a/sqitch/pg/verify/allocator_related_indexes.sql b/sqitch/pg/verify/allocator_related_indexes.sql new file mode 100644 index 0000000..d75e9e0 --- /dev/null +++ b/sqitch/pg/verify/allocator_related_indexes.sql @@ -0,0 +1,7 @@ +-- Verify guix-build-coordinator:allocator_related_indexes on pg + +BEGIN; + +-- XXX Add verifications here. + +ROLLBACK; |