fixed out of stock

This commit is contained in:
NyanLinHtut
2020-03-20 16:13:13 +06:30
parent 03fe9e43f2
commit dce2441b9a
21 changed files with 339 additions and 216 deletions

View File

@@ -0,0 +1,9 @@
class DropOutOfStockTable < ActiveRecord::Migration[5.1]
def up
drop_table :out_of_stocks
end
def down
raise ActiveRecord::IrreversibleMigration
end
end