10 lines
170 B
Ruby
10 lines
170 B
Ruby
class DropOutOfStockTable < ActiveRecord::Migration[5.1]
|
|
def up
|
|
drop_table :out_of_stocks
|
|
end
|
|
|
|
def down
|
|
raise ActiveRecord::IrreversibleMigration
|
|
end
|
|
end
|