mirror of
https://github.com/rails/rails.git
synced 2022-11-09 12:12:34 -05:00
6931bed1b4
This reverts commit9a1abedcde
, reversing changes made toc72d6c91a7
. Conflicts: activerecord/CHANGELOG.md activerecord/test/models/comment.rb This change break integration with activerecord-deprecated_finders so I'm reverting until we find a way to make it work with this gem.
4 lines
99 B
Ruby
4 lines
99 B
Ruby
class Rating < ActiveRecord::Base
|
|
belongs_to :comment
|
|
has_many :taggings, :as => :taggable
|
|
end
|