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