Files
fizzy/db/migrate/20250819105245_drop_commands_table.rb
T
Kevin McConnell ca0d61477d Add if_exists when dropping commands
To cover anyone who may have run the original migration before it was
removed.
2025-08-20 16:37:09 +01:00

6 lines
120 B
Ruby

class DropCommandsTable < ActiveRecord::Migration[8.1]
def change
drop_table :commands, if_exists: true
end
end