mirror of
https://github.com/rails/rails.git
synced 2022-11-09 12:12:34 -05:00
9401fa0b9c
while declaring default_scope Also added test for unscoped using block style with four different combinations Signed-off-by: José Valim <jose.valim@gmail.com>
22 lines
441 B
Ruby
22 lines
441 B
Ruby
class Car < ActiveRecord::Base
|
|
|
|
has_many :bulbs
|
|
has_many :tyres
|
|
has_many :engines
|
|
has_many :wheels, :as => :wheelable
|
|
|
|
scope :incl_tyres, includes(:tyres)
|
|
scope :incl_engines, includes(:engines)
|
|
|
|
scope :order_using_new_style, order('name asc')
|
|
scope :order_using_old_style, :order => 'name asc'
|
|
|
|
end
|
|
|
|
class CoolCar < Car
|
|
default_scope :order => 'name desc'
|
|
end
|
|
|
|
class FastCar < Car
|
|
default_scope order('name desc')
|
|
end
|