mirror of
https://github.com/openSUSE/osem.git
synced 2026-05-01 20:23:30 -04:00
7 lines
137 B
Ruby
7 lines
137 B
Ruby
class Answer < ActiveRecord::Base
|
|
has_many :qanswers
|
|
has_many :questions, through: :qanswers
|
|
|
|
validates :title, presence: true
|
|
end
|