mirror of
https://github.com/openSUSE/osem.git
synced 2026-08-13 19:54:02 +00:00
7 lines
242 B
Ruby
7 lines
242 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
|
|
has_many :ticket_scannings
|
|
end
|