updating CHANGELOG

This commit is contained in:
Aaron Patterson
2010-11-17 14:26:14 -08:00
parent b0a6f58068
commit 17c7723451

View File

@@ -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]