aboutsummaryrefslogtreecommitdiff
path: root/sqitch/revert
diff options
context:
space:
mode:
authorChristopher Baines <mail@cbaines.net>2022-05-23 19:10:25 +0100
committerChristopher Baines <mail@cbaines.net>2022-05-23 19:10:25 +0100
commit64be52844e679d205d959ea06d50c44366c39097 (patch)
treeec33c03b2cb41bdd8b5159ecd230bdce07977cec /sqitch/revert
parent89545caa3f8223db49f3e18dfecee0bc4094c0da (diff)
downloaddata-service-64be52844e679d205d959ea06d50c44366c39097.tar
data-service-64be52844e679d205d959ea06d50c44366c39097.tar.gz
Partition the package_derivations_by_guix_revision_range table
And create a proper git_branches table in the process. I'm hoping this will help with slow deletions from the package_derivations_by_guix_revision_range table in the case where there are lots of branches, since it'll separate the data for one branch from another. These migrations will remove the existing data, so rebuild-package-derivations-table will currently need manually running to regenerate it.
Diffstat (limited to 'sqitch/revert')
-rw-r--r--sqitch/revert/git_branch_id.sql7
-rw-r--r--sqitch/revert/partition_package_derivations_by_guix_revision_range.sql7
2 files changed, 14 insertions, 0 deletions
diff --git a/sqitch/revert/git_branch_id.sql b/sqitch/revert/git_branch_id.sql
new file mode 100644
index 0000000..d9a18da
--- /dev/null
+++ b/sqitch/revert/git_branch_id.sql
@@ -0,0 +1,7 @@
+-- Revert guix-data-service:git_branch_id from pg
+
+BEGIN;
+
+-- XXX Add DDLs here.
+
+COMMIT;
diff --git a/sqitch/revert/partition_package_derivations_by_guix_revision_range.sql b/sqitch/revert/partition_package_derivations_by_guix_revision_range.sql
new file mode 100644
index 0000000..f3a1436
--- /dev/null
+++ b/sqitch/revert/partition_package_derivations_by_guix_revision_range.sql
@@ -0,0 +1,7 @@
+-- Revert guix-data-service:partition_package_derivations_by_guix_revision_range from pg
+
+BEGIN;
+
+-- XXX Add DDLs here.
+
+COMMIT;