mirror of
https://github.com/Retrospring/retrospring.git
synced 2025-03-31 04:42:12 +02:00
8 lines
203 B
Ruby
8 lines
203 B
Ruby
class Comment < ActiveRecord::Base
|
|
belongs_to :user
|
|
belongs_to :answer
|
|
validates :user_id, presence: true
|
|
validates :answer_id, presence: true
|
|
|
|
validates :content, length: { maximum: 160 }
|
|
end
|