]> git.openstreetmap.org Git - rails.git/blobdiff - app/models/issue_comment.rb
Merge pull request #1938 from jguthrie100/fix_no_trace_description_error
[rails.git] / app / models / issue_comment.rb
index bbc15aefa98caaeed54ef17f013950aff47aad81..3a5894cb3e1b4cab5ee1a91ed077164ed2faf77f 100644 (file)
@@ -2,28 +2,27 @@
 #
 # 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
-#  reassign          :boolean
-#  created_at        :datetime         not null
-#  updated_at        :datetime         not null
+#  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_commenter_user_id  (commenter_user_id)
-#  index_issue_comments_on_issue_id           (issue_id)
+#  index_issue_comments_on_issue_id  (issue_id)
+#  index_issue_comments_on_user_id   (user_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
+#  issue_comments_issue_id_fkey  (issue_id => issues.id)
+#  issue_comments_user_id_fkey   (user_id => users.id)
 #
 
 class IssueComment < ActiveRecord::Base
   belongs_to :issue
-  belongs_to :user, :class_name => "User", :foreign_key => :commenter_user_id
+  belongs_to :user
 
   validates :body, :presence => true
   validates :user, :presence => true