2014-01-01 11:39:59 +02:00
|
|
|
class Vday < ActiveRecord::Base
|
|
|
|
|
attr_accessible :day, :description
|
|
|
|
|
|
|
|
|
|
belongs_to :conference
|
|
|
|
|
|
|
|
|
|
has_many :vchoices
|
2014-07-21 14:49:05 +02:00
|
|
|
has_many :vpositions, through: :vchoices, dependent: :destroy
|
2014-06-30 17:07:53 +02:00
|
|
|
end
|