osem-fcy/app/models/sponsorship_level.rb

7 lines
150 B
Ruby
Raw Normal View History

2014-06-05 11:56:04 +05:30
class SponsorshipLevel < ActiveRecord::Base
attr_accessible :title
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