Skip to content

Commit a0e2f1b

Browse files
committed
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).
1 parent 173ff49 commit a0e2f1b

File tree

1 file changed

+11
-0
lines changed

1 file changed

+11
-0
lines changed
Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
Sequel.migration do
2+
up do
3+
# This table is unused since CAPI 1.120.0 (Oct. 2021).
4+
# The model class has been removed with CAPI 1.140.0 (Oct. 2022).
5+
drop_table?(:request_counts)
6+
end
7+
8+
down do
9+
# This migration is irreversible.
10+
end
11+
end

0 commit comments

Comments
 (0)