11 lines
119 B
Ruby
11 lines
119 B
Ruby
class Cart < ActiveRecord::Base
|
|
|
|
has_many :item_in_carts
|
|
belongs_to :user
|
|
belongs_to :delivery_destination
|
|
|
|
|
|
|
|
|
|
end
|