osem-fcy/app/models/sponsorship_level.rb

7 lines
166 B
Ruby
Raw Normal View History

2014-06-05 11:56:04 +05:30
class SponsorshipLevel < ActiveRecord::Base
2014-08-12 11:51:59 +03:00
attr_accessible :title, :conference_id
2014-06-05 11:56:04 +05:30
validates_presence_of :title
belongs_to :conference
2014-06-05 17:51:22 +05:30
has_many :sponsors
2014-06-05 11:56:04 +05:30
end