mirror of
https://github.com/openSUSE/osem.git
synced 2026-08-14 04:04:03 +00:00
8 lines
194 B
Ruby
8 lines
194 B
Ruby
class Qanswer < ActiveRecord::Base
|
|
attr_accessible :question_id, :answer_id
|
|
|
|
belongs_to :question
|
|
belongs_to :answer, :dependent => :delete
|
|
|
|
has_and_belongs_to_many :registrations
|
|
end
|