added migrations for instant delivery
This commit is contained in:
@@ -0,0 +1,5 @@
|
||||
class AddInstantDeliveryPriceToPlaces < ActiveRecord::Migration
|
||||
def change
|
||||
add_column :places, :instant_delivery_price, :decimal , precision: 5, scale: 2
|
||||
end
|
||||
end
|
||||
@@ -0,0 +1,5 @@
|
||||
class AddInstantDeliveryToDeliveryDestinations < ActiveRecord::Migration
|
||||
def change
|
||||
add_column :delivery_destinations, :instant_delivery, :boolean, default: false
|
||||
end
|
||||
end
|
||||
Reference in New Issue
Block a user