diff options
author | Guillermo Iguaran <guilleiguaran@gmail.com> | 2017-06-16 20:55:56 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-06-16 20:55:56 -0500 |
commit | 03fa6b2907ae68e0c2cfeb8c3e56c080d7ff99c0 (patch) | |
tree | 3980620b25aacb6928013fcdb9a527312411bc64 /activerecord/test/models | |
parent | a3f758ab0ad7d65bf498980f875c8b3c71e347c0 (diff) | |
parent | c073240f70de81639a340ab68b001a77ffb6237e (diff) | |
download | rails-03fa6b2907ae68e0c2cfeb8c3e56c080d7ff99c0.tar.gz rails-03fa6b2907ae68e0c2cfeb8c3e56c080d7ff99c0.tar.bz2 rails-03fa6b2907ae68e0c2cfeb8c3e56c080d7ff99c0.zip |
Merge pull request #29415 from kamipo/remove_unused_defined_association
Remove unused defined association
Diffstat (limited to 'activerecord/test/models')
-rw-r--r-- | activerecord/test/models/comment.rb | 1 |
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 |