aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/test/models/car.rb
blob: a978debb58238845d3715166407a1a357400936b (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
class Car < ActiveRecord::Base

  has_many :bulbs
  has_many :foo_bulbs, :class_name => "Bulb", :conditions => { :name => 'foo' }
  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
  def self.default_scope
    order 'name desc'
  end
end

class FastCar < Car
  def self.default_scope
    order 'name desc'
  end
end