aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/test/models
diff options
context:
space:
mode:
authorRyuta Kamizono <kamipo@gmail.com>2017-06-11 21:59:36 +0900
committerRyuta Kamizono <kamipo@gmail.com>2017-06-11 22:08:18 +0900
commitc073240f70de81639a340ab68b001a77ffb6237e (patch)
treefdff278cc03901fa801fcdaacf49d14341bf7001 /activerecord/test/models
parentf81f840c02cff34c169e6fca348fab9a372c8372 (diff)
downloadrails-c073240f70de81639a340ab68b001a77ffb6237e.tar.gz
rails-c073240f70de81639a340ab68b001a77ffb6237e.tar.bz2
rails-c073240f70de81639a340ab68b001a77ffb6237e.zip
Remove unused defined association
`belongs_to :developer` on `Comment` model was added in 431f8e0 but it is unused.
Diffstat (limited to 'activerecord/test/models')
-rw-r--r--activerecord/test/models/comment.rb1
1 files changed, 0 insertions, 1 deletions
diff --git a/activerecord/test/models/comment.rb b/activerecord/test/models/comment.rb
index d227f6fe86..eecf923046 100644
--- a/activerecord/test/models/comment.rb
+++ b/activerecord/test/models/comment.rb
@@ -9,7 +9,6 @@ class Comment < ActiveRecord::Base
belongs_to :post, counter_cache: true
belongs_to :author, polymorphic: true
belongs_to :resource, polymorphic: true
- belongs_to :developer
has_many :ratings