mirror of
https://github.com/Retrospring/retrospring.git
synced 2025-03-22 22:57:47 +01:00
6 lines
101 B
Ruby
6 lines
101 B
Ruby
|
class Answer < ActiveRecord::Base
|
||
|
belongs_to :user
|
||
|
belongs_to :question
|
||
|
has_many :comments
|
||
|
end
|