ca0d61477d
To cover anyone who may have run the original migration before it was removed.
6 lines
120 B
Ruby
6 lines
120 B
Ruby
class DropCommandsTable < ActiveRecord::Migration[8.1]
|
|
def change
|
|
drop_table :commands, if_exists: true
|
|
end
|
|
end
|