osem-fcy/app/models/answer.rb

18 lines
343 B
Ruby
Raw Normal View History

# frozen_string_literal: true
2021-02-20 09:57:27 -08:00
# == Schema Information
#
# Table name: answers
#
# id :bigint not null, primary key
# title :string
# created_at :datetime
# updated_at :datetime
#
class Answer < ApplicationRecord
2014-02-09 18:05:57 +02:00
has_many :qanswers
2014-07-21 14:49:05 +02:00
has_many :questions, through: :qanswers
2014-02-09 18:05:57 +02:00
2014-07-21 14:49:05 +02:00
validates :title, presence: true
2014-02-09 18:05:57 +02:00
end