Remove unused defined association

`belongs_to :developer` on `Comment` model was added in 431f8e0 but it
is unused.
This commit is contained in:
Ryuta Kamizono 2017-06-11 21:59:36 +09:00
parent f81f840c02
commit c073240f70
2 changed files with 1 additions and 2 deletions

@ -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