1
0
Fork 0
mirror of https://github.com/rails/rails.git synced 2022-11-09 12:12:34 -05:00

Remove deprecation warning, since scoped waas deprecated

This commit is contained in:
Rafael Mendonça França 2012-07-29 16:11:48 -03:00
parent 0c315c75a4
commit 6b9004a9f4

View file

@ -1,5 +1,5 @@
class Reply < ActiveRecord::Base
scope :base, -> { scoped }
scope :base, -> { all }
belongs_to :topic, -> { includes(:replies) }
belongs_to :developer