1
0
mirror of https://github.com/LaCasemate/fab-manager.git synced 2024-12-01 12:24:28 +01:00
fab-manager/app/models/price_category.rb

13 lines
239 B
Ruby
Raw Normal View History

2016-08-24 12:30:48 +02:00
class PriceCategory < ActiveRecord::Base
has_many :event_price_category
has_many :events, through: :event_price_categories
def safe_destroy
if event_price_category.count == 0
destroy
else
false
end
end
end