osem-fcy/app/models/answer.rb

9 lines
171 B
Ruby
Raw Normal View History

2014-02-09 18:05:57 +02:00
class Answer < ActiveRecord::Base
attr_accessible :title
has_many :qanswers
has_many :questions, :through => :qanswers
validates :title, :presence => true
end