aboutsummaryrefslogtreecommitdiff
path: root/sqitch/revert
diff options
context:
space:
mode:
authorChristopher Baines <mail@cbaines.net>2020-10-01 22:30:39 +0100
committerChristopher Baines <mail@cbaines.net>2020-10-01 22:30:39 +0100
commit6e0e33addfbec945b1deefe1f1991db5eeb889ef (patch)
tree2856e68de7de8aaab3fb48c740085975d4adafdf /sqitch/revert
parentc05a8e4e9f0e9c4ea348bcf71672de9c1ee3da46 (diff)
downloaddata-service-6e0e33addfbec945b1deefe1f1991db5eeb889ef.tar
data-service-6e0e33addfbec945b1deefe1f1991db5eeb889ef.tar.gz
Change the autovacuum config for some tables
Looking at data for the the patches deployment of the Guix Data Service, these tables look like they might benefit from vacuuming/analyzing more often, so adjust the configuration so this will hopefully happen.
Diffstat (limited to 'sqitch/revert')
-rw-r--r--sqitch/revert/change_autovacuum_config.sql7
1 files changed, 7 insertions, 0 deletions
diff --git a/sqitch/revert/change_autovacuum_config.sql b/sqitch/revert/change_autovacuum_config.sql
new file mode 100644
index 0000000..cf5d09b
--- /dev/null
+++ b/sqitch/revert/change_autovacuum_config.sql
@@ -0,0 +1,7 @@
+-- Revert guix-data-service:change_autovacuum_config from pg
+
+BEGIN;
+
+-- XXX Add DDLs here.
+
+COMMIT;