X-Git-Url: https://git.openstreetmap.org/rails.git/blobdiff_plain/dbd88d893f3c3fce9cafd666b94396988646d81f..8938ab79975d4152a4d6d3c8ceafdbda30b6b367:/app/models/issue_comment.rb diff --git a/app/models/issue_comment.rb b/app/models/issue_comment.rb index 2122a6489..07647d679 100644 --- a/app/models/issue_comment.rb +++ b/app/models/issue_comment.rb @@ -1,6 +1,28 @@ -class IssueComment < ActiveRecord::Base +# == Schema Information +# +# Table name: issue_comments +# +# id :integer not null, primary key +# issue_id :integer not null +# user_id :integer not null +# body :text not null +# created_at :datetime not null +# updated_at :datetime not null +# +# Indexes +# +# index_issue_comments_on_issue_id (issue_id) +# index_issue_comments_on_user_id (user_id) +# +# Foreign Keys +# +# issue_comments_issue_id_fkey (issue_id => issues.id) +# issue_comments_user_id_fkey (user_id => users.id) +# + +class IssueComment < ApplicationRecord belongs_to :issue - belongs_to :user, :class_name => "User", :foreign_key => :commenter_user_id + belongs_to :user - validates :body, :presence => true + validates :body, :presence => true, :characters => true end