mirror of
https://github.com/LaCasemate/fab-manager.git
synced 2024-11-29 10:24:20 +01:00
10 lines
204 B
Ruby
10 lines
204 B
Ruby
class EventPriceCategory < ActiveRecord::Base
|
|
belongs_to :event
|
|
belongs_to :price_category
|
|
|
|
has_many :tickets
|
|
|
|
validates :price_category_id, presence: true
|
|
validates :amount, presence: true
|
|
end
|