Retrospring/app/models/comment.rb

7 lines
155 B
Ruby
Raw Normal View History

2014-10-27 22:36:38 -07:00
class Comment < ActiveRecord::Base
belongs_to :user
belongs_to :answer
2014-11-30 10:43:03 -08:00
validates :user_id, presence: true
validates :answer_id, presence: true
2014-10-27 22:36:38 -07:00
end