houdini/app/models/event_discount.rb

12 lines
157 B
Ruby
Raw Normal View History

class EventDiscount < ActiveRecord::Base
attr_accessible \
:code,
:event_id,
:name,
:percent
belongs_to :event
has_many :tickets
end