mirror of
https://github.com/openSUSE/osem.git
synced 2026-04-26 01:37:41 -04:00
9 lines
171 B
Ruby
9 lines
171 B
Ruby
class Answer < ActiveRecord::Base
|
|
attr_accessible :title
|
|
|
|
has_many :qanswers
|
|
has_many :questions, :through => :qanswers
|
|
|
|
validates :title, :presence => true
|
|
end
|