osem-fcy/app/models/vposition.rb
2015-12-23 11:36:50 +02:00

8 lines
166 B
Ruby

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