kosen-venture/RocketAnswer

View on GitHub
app/models/comment.rb

Summary

Maintainability
A
0 mins
Test Coverage
class Comment < ActiveRecord::Base
  belongs_to :user
  belongs_to :answer

  validates :content,
    presence: true,
    length: { maximum: 140 }
end