From a0e2f1b60b3fdb7cd95ddd2f8691678d07541db1 Mon Sep 17 00:00:00 2001 From: Philipp Thun Date: Tue, 21 May 2024 14:44:28 +0200 Subject: [PATCH] Drop request_counts table The table is unused since CAPI 1.120.0 (Oct. 2021) and the corresponding model class has been removed with CAPI 1.140.0 (Oct. 2022). --- .../20240521143700_drop_request_counts_table.rb | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 db/migrations/20240521143700_drop_request_counts_table.rb diff --git a/db/migrations/20240521143700_drop_request_counts_table.rb b/db/migrations/20240521143700_drop_request_counts_table.rb new file mode 100644 index 00000000000..cf07f5acc4e --- /dev/null +++ b/db/migrations/20240521143700_drop_request_counts_table.rb @@ -0,0 +1,11 @@ +Sequel.migration do + up do + # This table is unused since CAPI 1.120.0 (Oct. 2021). + # The model class has been removed with CAPI 1.140.0 (Oct. 2022). + drop_table?(:request_counts) + end + + down do + # This migration is irreversible. + end +end