voormedia/rails-erd

View on GitHub
examples/applications/typo/models/comment.rb

Summary

Maintainability
A
0 mins
Test Coverage
class Comment < Feedback
  belongs_to :article
  belongs_to :user
  validates_presence_of :author, :body
end