From 4f4c12ad076f5eab054cfdf6c1d351c79555aa7a Mon Sep 17 00:00:00 2001 From: Samuel Giddins Date: Tue, 21 Jan 2025 17:56:10 -0800 Subject: [PATCH] Include deletions in public dumps Signed-off-by: Samuel Giddins --- config/public_postgresql.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/config/public_postgresql.rb b/config/public_postgresql.rb index 066c752..3f91b98 100644 --- a/config/public_postgresql.rb +++ b/config/public_postgresql.rb @@ -16,7 +16,7 @@ db.password = ENV.fetch('POSTGRESQL_PASSWORD') db.host = ENV.fetch('POSTGRESQL_HOST') db.port = 5432 - db.only_tables = ['rubygems', 'versions', 'dependencies', 'linksets', 'version_histories', 'gem_downloads', 'attestations'] + db.only_tables = ['rubygems', 'versions', 'dependencies', 'linksets', 'version_histories', 'gem_downloads', 'attestations', 'deletions'] end compress_with Gzip