techvision/brails4

View on GitHub
app/models/comment.rb

Summary

Maintainability
A
0 mins
Test Coverage
class Comment
  include Mongoid::Document


  field :text, type: String

  belongs_to :commentable, polymorphic: true
  belongs_to :profile

  validates :text, presence: true#:commentable_id,:profile_id,   
end