new tables

This commit is contained in:
phyusin
2018-04-06 15:14:29 +06:30
parent 818f441529
commit 973482bdab
3 changed files with 36 additions and 0 deletions

View File

@@ -0,0 +1,11 @@
class CreateOrderReservationItems < ActiveRecord::Migration[5.1]
def change
create_table :order_reservation_items do |t|
end
end
def down
drop_table :order_reservation_items
end
end