osem-fcy/app/models/qanswer.rb

11 lines
223 B
Ruby
Raw Permalink Normal View History

# frozen_string_literal: true
class Qanswer < ApplicationRecord
2014-02-09 18:05:57 +02:00
belongs_to :question
2014-07-21 14:49:05 +02:00
belongs_to :answer, dependent: :delete
2014-08-18 21:26:45 +03:00
2014-02-09 18:05:57 +02:00
has_and_belongs_to_many :registrations
validates :question, :answer, presence: true
2014-02-09 18:05:57 +02:00
end