diff options
author | Aaron Patterson <aaron.patterson@gmail.com> | 2010-11-17 14:26:14 -0800 |
---|---|---|
committer | Aaron Patterson <aaron.patterson@gmail.com> | 2010-11-17 14:26:35 -0800 |
commit | 17c7723451eba00eddbacf65e47d151e3ccafa5b (patch) | |
tree | df4626d5d253c85c4a1b6d74afed340be8f8f588 | |
parent | b0a6f58068394d11841b57d94b3a6ecb42c3b8b0 (diff) | |
download | rails-17c7723451eba00eddbacf65e47d151e3ccafa5b.tar.gz rails-17c7723451eba00eddbacf65e47d151e3ccafa5b.tar.bz2 rails-17c7723451eba00eddbacf65e47d151e3ccafa5b.zip |
updating CHANGELOG
-rw-r--r-- | activerecord/CHANGELOG | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/activerecord/CHANGELOG b/activerecord/CHANGELOG index 11eb47917d..7f54c0fa30 100644 --- a/activerecord/CHANGELOG +++ b/activerecord/CHANGELOG @@ -1,5 +1,14 @@ *Rails 3.1.0 (unreleased)* +* Migrations should use instance methods rather than class methods: + class FooMigration < ActiveRecord::Migration + def up + ... + end + end + + [Aaron Patterson] + * has_one maintains the association with separate after_create/after_update instead of a single after_save. [fxn] |