mirror of
https://github.com/openSUSE/osem.git
synced 2026-02-04 19:22:50 -05: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
|