mirror of
https://github.com/openfoodfoundation/openfoodnetwork
synced 2026-03-09 03:20:21 +00:00
10 lines
177 B
Ruby
10 lines
177 B
Ruby
class AddCart < ActiveRecord::Migration
|
|
def change
|
|
create_table :carts do |t|
|
|
t.integer :user_id
|
|
end
|
|
|
|
add_column :spree_orders, :cart_id, :integer
|
|
end
|
|
end
|