aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/test/models
diff options
context:
space:
mode:
authorgregolsen <anotheroneman@yahoo.com>2012-01-31 11:48:26 +0200
committergregolsen <anotheroneman@yahoo.com>2012-01-31 11:52:23 +0200
commitf13a1dd781d57128cd53a9b070248b8bc13edaeb (patch)
tree93a806aa2b01a5a514fecb0e87291bb37fd49cab /activerecord/test/models
parent920030b3d58b0fa1e5600e9573d82d561f22aff1 (diff)
downloadrails-f13a1dd781d57128cd53a9b070248b8bc13edaeb.tar.gz
rails-f13a1dd781d57128cd53a9b070248b8bc13edaeb.tar.bz2
rails-f13a1dd781d57128cd53a9b070248b8bc13edaeb.zip
ids_reader method fixed, test added to has_many association
Diffstat (limited to 'activerecord/test/models')
-rw-r--r--activerecord/test/models/company.rb1
1 files changed, 1 insertions, 0 deletions
diff --git a/activerecord/test/models/company.rb b/activerecord/test/models/company.rb
index d1a8a82786..764f1c1df5 100644
--- a/activerecord/test/models/company.rb
+++ b/activerecord/test/models/company.rb
@@ -45,6 +45,7 @@ class Firm < Company
has_many :unsorted_clients_with_symbol, :class_name => :Client
has_many :clients_sorted_desc, :class_name => "Client", :order => "id DESC"
has_many :clients_of_firm, :foreign_key => "client_of", :class_name => "Client", :order => "id"
+ has_many :clients_ordered_by_rating, :order => "rating", :class_name => "Client"
has_many :unvalidated_clients_of_firm, :foreign_key => "client_of", :class_name => "Client", :validate => false
has_many :dependent_clients_of_firm, :foreign_key => "client_of", :class_name => "Client", :order => "id", :dependent => :destroy
has_many :exclusively_dependent_clients_of_firm, :foreign_key => "client_of", :class_name => "Client", :order => "id", :dependent => :delete_all