osem-fcy/app/models/sponsorship_level.rb

7 lines
159 B
Ruby
Raw Normal View History

2014-06-05 11:56:04 +05:30
class SponsorshipLevel < ActiveRecord::Base
validates_presence_of :title
belongs_to :conference
acts_as_list scope: :conference
2014-06-05 17:51:22 +05:30
has_many :sponsors
2014-06-05 11:56:04 +05:30
end