mirror of
https://github.com/openSUSE/osem.git
synced 2026-02-04 19:22:50 -05:00
9 lines
193 B
Ruby
9 lines
193 B
Ruby
class Qanswer < ActiveRecord::Base
|
|
belongs_to :question
|
|
belongs_to :answer, dependent: :delete
|
|
|
|
has_and_belongs_to_many :registrations
|
|
|
|
validates :question, :answer, presence: true
|
|
end
|