osem-fcy/app/models/answer.rb
2018-04-04 10:28:10 -07:00

8 lines
167 B
Ruby

# frozen_string_literal: true
class Answer < ApplicationRecord
has_many :qanswers
has_many :questions, through: :qanswers
validates :title, presence: true
end