1
0
mirror of https://github.com/LaCasemate/fab-manager.git synced 2025-02-21 15:54:22 +01:00
fab-manager/app/models/event_price_category.rb
2020-03-25 12:35:09 +01:00

18 lines
329 B
Ruby

class EventPriceCategory < ApplicationRecord
belongs_to :event
belongs_to :price_category
has_many :tickets
validates :price_category_id, presence: true
validates :amount, presence: true
before_destroy :verify_no_associated_tickets
protected
def verify_no_associated_tickets
tickets.count == 0
end
end