mirror of
https://github.com/Retrospring/retrospring.git
synced 2025-01-19 07:16:03 +01:00
6 lines
155 B
Ruby
6 lines
155 B
Ruby
class Comment < ActiveRecord::Base
|
|
belongs_to :user
|
|
belongs_to :answer
|
|
validates :user_id, presence: true
|
|
validates :answer_id, presence: true
|
|
end
|