7 lines
213 B
Ruby
7 lines
213 B
Ruby
|
|
class PhysicalTicket < ActiveRecord::Base
|
||
|
|
belongs_to :ticket_purchase
|
||
|
|
has_one :ticket, through: :ticket_purchase
|
||
|
|
has_one :conference, through: :ticket_purchase
|
||
|
|
has_one :user, through: :ticket_purchase
|
||
|
|
end
|