osem-fcy/app/models/social_event.rb

7 lines
156 B
Ruby
Raw Normal View History

class SocialEvent < ActiveRecord::Base
attr_accessible :title, :description, :date
belongs_to :conference
has_and_belongs_to_many :registrations
2014-06-30 17:07:53 +02:00
end