diff options
author | Jon Leighton <j@jonathanleighton.com> | 2012-03-30 03:25:30 -0700 |
---|---|---|
committer | Jon Leighton <j@jonathanleighton.com> | 2012-03-30 03:25:30 -0700 |
commit | 3a8c54396ea3965eb7601501d7bb9618ff305728 (patch) | |
tree | 18044d98cd07e0619efa4d416bc6b9dd74a347e0 /activerecord/test/schema/schema.rb | |
parent | 7dd7d76b86b2168b39fb7f0c359d84ea6df0ce41 (diff) | |
parent | 135d704a55b87b1c5371f4a552151f44964a8fed (diff) | |
download | rails-3a8c54396ea3965eb7601501d7bb9618ff305728.tar.gz rails-3a8c54396ea3965eb7601501d7bb9618ff305728.tar.bz2 rails-3a8c54396ea3965eb7601501d7bb9618ff305728.zip |
Merge pull request #2945 from Casecommons/nested_attributes_module
Nested attribute setters can be overridden.
Diffstat (limited to 'activerecord/test/schema/schema.rb')
-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 5e7985c530..d5e4f165cb 100644 --- a/activerecord/test/schema/schema.rb +++ b/activerecord/test/schema/schema.rb @@ -439,6 +439,7 @@ ActiveRecord::Schema.define do create_table :parrots, :force => true do |t| t.column :name, :string + t.column :color, :string t.column :parrot_sti_class, :string t.column :killer_id, :integer t.column :created_at, :datetime |