osem-fcy/app/models/vday.rb

20 lines
410 B
Ruby
Raw Normal View History

# frozen_string_literal: true
2021-02-20 09:57:27 -08:00
# == Schema Information
#
# Table name: vdays
#
# id :bigint not null, primary key
# day :date
# description :text
# created_at :datetime
# updated_at :datetime
# conference_id :integer
#
class Vday < ApplicationRecord
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