# issue_comments_user_id_fkey (user_id => users.id)
#
-class IssueComment < ActiveRecord::Base
+class IssueComment < ApplicationRecord
belongs_to :issue
belongs_to :user
- validates :body, :presence => true, :invalid_chars => true
+ validates :body, :presence => true, :characters => true
validates :user, :presence => true
validates :issue, :presence => true
end