X-Git-Url: https://git.openstreetmap.org/rails.git/blobdiff_plain/d5f02968f6f2dd153c74844e818a4d2b2ae24991..2dd8f09395f1a8e050330b360154e5b7ad1a8492:/app/models/issue_comment.rb diff --git a/app/models/issue_comment.rb b/app/models/issue_comment.rb index 866a85b84..7a51265f3 100644 --- a/app/models/issue_comment.rb +++ b/app/models/issue_comment.rb @@ -1,6 +1,30 @@ +# == Schema Information +# +# Table name: issue_comments +# +# id :integer not null, primary key +# issue_id :integer not null +# commenter_user_id :integer not null +# body :text not null +# created_at :datetime not null +# updated_at :datetime not null +# +# Indexes +# +# index_issue_comments_on_commenter_user_id (commenter_user_id) +# index_issue_comments_on_issue_id (issue_id) +# +# Foreign Keys +# +# issue_comments_commenter_user_id (commenter_user_id => users.id) ON DELETE => cascade +# issue_comments_issue_id_fkey (issue_id => issues.id) ON DELETE => cascade +# + class IssueComment < ActiveRecord::Base - belongs_to :issue - belongs_to :user, :class_name => "User", :foreign_key => :commenter_user_id + belongs_to :issue + belongs_to :user, :class_name => "User", :foreign_key => :commenter_user_id - validates :body, :presence => true + validates :body, :presence => true + validates :user, :presence => true + validates :issue, :presence => true end