diff options
author | Michael Koziarski <michael@koziarski.com> | 2007-09-09 05:40:34 +0000 |
---|---|---|
committer | Michael Koziarski <michael@koziarski.com> | 2007-09-09 05:40:34 +0000 |
commit | fa602bb86d31450c488d087b00c2d12198ab6ec8 (patch) | |
tree | 781e2a3b02df7d05e19a28c7270ce2ffe1d02a32 /railties/CHANGELOG | |
parent | 80ff0b9f1c07eae7668680fd12335ffa218e53ac (diff) | |
download | rails-fa602bb86d31450c488d087b00c2d12198ab6ec8.tar.gz rails-fa602bb86d31450c488d087b00c2d12198ab6ec8.tar.bz2 rails-fa602bb86d31450c488d087b00c2d12198ab6ec8.zip |
Use attribute pairs instead of the migration name to create add and remove column migrations. Closes #9166 [lifofifo]
git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@7422 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
Diffstat (limited to 'railties/CHANGELOG')
-rw-r--r-- | railties/CHANGELOG | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/railties/CHANGELOG b/railties/CHANGELOG index 0fdaafa672..bd90449127 100644 --- a/railties/CHANGELOG +++ b/railties/CHANGELOG @@ -1,5 +1,15 @@ *SVN* +* Use attribute pairs instead of the migration name to create add and remove column migrations. Closes #9166 [lifofifo] + + For example: + + ruby script/generation migration AddSomeStuffToCustomers first_name:string last_name:string + + or + + ruby script/generation migration RemoveSomeStuffFromCustomers first_name:string last_name:string + * Add ActiveResource to Rails::Info. Closes #8741 [kampers] * use Gem.find_name instead of search when freezing gems. Prevent false positives for other gems with rails in the name. Closes #8729 [wselman] |