From 17c7723451eba00eddbacf65e47d151e3ccafa5b Mon Sep 17 00:00:00 2001 From: Aaron Patterson Date: Wed, 17 Nov 2010 14:26:14 -0800 Subject: [PATCH] updating CHANGELOG --- activerecord/CHANGELOG | 9 +++++++++ 1 file changed, 9 insertions(+) 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] -- GitLab