7 lines
181 B
Ruby
7 lines
181 B
Ruby
|
|
class SponsorshipLevel < ActiveRecord::Base
|
||
|
|
attr_accessible :title, :description
|
||
|
|
belongs_to :conference
|
||
|
|
has_many :sponsorship_registrations
|
||
|
|
validates_presence_of :title
|
||
|
|
end
|