7 lines
81 B
Ruby
7 lines
81 B
Ruby
class Cart < ActiveRecord::Base
|
|
|
|
has_many :item_in_carts
|
|
belongs_to :user
|
|
|
|
end
|