]> git.openstreetmap.org Git - rails.git/blobdiff - app/models/issue_comment.rb
Rename 'issue_type' to 'assigned_role', set defaults in the model and test.
[rails.git] / app / models / issue_comment.rb
index bbc6261640ab48d635d9256a87d754b24e0c31ed..2968078b3d96da719791cc220370be358aeccae3 100644 (file)
@@ -1,6 +1,28 @@
+# == 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) ON DELETE => cascade
+#  issue_comments_user_id        (user_id => users.id) ON DELETE => cascade
+#
+
 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