diff options
author | Jon Leighton <j@jonathanleighton.com> | 2011-05-14 19:40:24 +0100 |
---|---|---|
committer | Jon Leighton <j@jonathanleighton.com> | 2011-05-14 19:49:22 +0100 |
commit | 60b23ea1da1c119eaab6d07e5a03cf3b5d5577d4 (patch) | |
tree | 3e352279ac70704e426726e848b1687cd0007fdc /activerecord/test/schema | |
parent | 6660beef367a888ac633cc03d1d7157737e6b2cb (diff) | |
download | rails-60b23ea1da1c119eaab6d07e5a03cf3b5d5577d4.tar.gz rails-60b23ea1da1c119eaab6d07e5a03cf3b5d5577d4.tar.bz2 rails-60b23ea1da1c119eaab6d07e5a03cf3b5d5577d4.zip |
CollectionAssociation#merge_target_lists should write to the underlying attributes when copying, rather than using the assignment method
Diffstat (limited to 'activerecord/test/schema')
-rw-r--r-- | activerecord/test/schema/schema.rb | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/activerecord/test/schema/schema.rb b/activerecord/test/schema/schema.rb index c8a98f121d..d56cdd57b2 100644 --- a/activerecord/test/schema/schema.rb +++ b/activerecord/test/schema/schema.rb @@ -90,6 +90,7 @@ ActiveRecord::Schema.define do t.integer :car_id t.string :name t.boolean :frickinawesome + t.string :color end create_table "CamelCase", :force => true do |t| |