added some models, started creating delivery destination state
This commit is contained in:
@@ -0,0 +1,6 @@
|
||||
class AddUserToDeliveryDestination < ActiveRecord::Migration
|
||||
def change
|
||||
add_column :delivery_destinations, :user_id, :integer
|
||||
add_column :delivery_destinations, :anonymous_id_string, :string
|
||||
end
|
||||
end
|
||||
@@ -0,0 +1,5 @@
|
||||
class AddAddressToCart < ActiveRecord::Migration
|
||||
def change
|
||||
add_column :carts, :delivery_destination_id, :integer
|
||||
end
|
||||
end
|
||||
Reference in New Issue
Block a user