Files
sx-fc/db/migrate/20200319113930_drop_out_of_stock_table.rb
2020-03-20 16:13:13 +06:30

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