osem-fcy/app/models/vposition.rb
2014-07-21 15:05:58 +02:00

10 lines
217 B
Ruby

class Vposition < ActiveRecord::Base
attr_accessible :title, :description, :vday_ids
belongs_to :conference
has_many :vchoices
has_many :vdays, through: :vchoices
validates_presence_of :title, :vdays
end