Ruby on Rails | Screencasts | Download | Documentation | Weblog | Community | Source

Changeset 4897

Show
Ignore:
Timestamp:
09/02/06 02:51:01 (2 years ago)
Author:
bitsweat
Message:

Commit stray fixture.

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • trunk/activerecord/test/fixtures/company.rb

    r4848 r4897  
    2323  has_many :limited_clients, :class_name => "Client", :order => "id", :limit => 1 
    2424  has_many :clients_like_ms, :conditions => "name = 'Microsoft'", :class_name => "Client", :order => "id" 
     25  has_many :clients_like_ms_with_hash_conditions, :conditions => { :name => 'Microsoft' }, :class_name => "Client", :order => "id" 
    2526  has_many :clients_using_sql, :class_name => "Client", :finder_sql => 'SELECT * FROM companies WHERE client_of = #{id}' 
    2627  has_many :clients_using_counter_sql, :class_name => "Client",