Files
redux-scraper/db/migrate/20250721193212_drop_blob_entries_tables.rb
2025-07-21 21:14:44 +00:00

11 lines
249 B
Ruby

# typed: strict
# frozen_string_literal: true
class DropBlobEntriesTables < ActiveRecord::Migration[7.2]
sig { void }
def up
64.times.map { |i| drop_table :"blob_entries_p_#{i.to_s.rjust(2, "0")}" }
drop_table :blob_entries_p
end
end