5 lines
88 B
Ruby
5 lines
88 B
Ruby
|
|
class DeliveryDestination < ActiveRecord::Base
|
||
|
|
has_one :cart
|
||
|
|
belongs_to :user
|
||
|
|
end
|