osem-fcy/app/models/sponsorship_level.rb
2015-12-23 11:36:50 +02:00

6 lines
159 B
Ruby

class SponsorshipLevel < ActiveRecord::Base
validates_presence_of :title
belongs_to :conference
acts_as_list scope: :conference
has_many :sponsors
end