7 lines
122 B
Ruby
7 lines
122 B
Ruby
|
|
class DietaryChoice < ActiveRecord::Base
|
||
|
|
attr_accessible :title
|
||
|
|
|
||
|
|
belongs_to :conference
|
||
|
|
has_many :registrations
|
||
|
|
end
|