diff options
author | Mikel Lindsaar <raasdnil@gmail.com> | 2010-02-02 10:17:46 +1100 |
---|---|---|
committer | Mikel Lindsaar <raasdnil@gmail.com> | 2010-02-02 10:17:46 +1100 |
commit | 783e583d9c183583c9bd1b2f1a856466c6c57eee (patch) | |
tree | d6199bc52ed6f65c2095107ae7b9ab8607aace5f /railties/guides/source/3_0_release_notes.textile | |
parent | cc2fa4d713bc2a1a66b43a1faee1af8b4826ae93 (diff) | |
download | rails-783e583d9c183583c9bd1b2f1a856466c6c57eee.tar.gz rails-783e583d9c183583c9bd1b2f1a856466c6c57eee.tar.bz2 rails-783e583d9c183583c9bd1b2f1a856466c6c57eee.zip |
Adding in rake task updates and extra data on postgres and oracle fixes
Diffstat (limited to 'railties/guides/source/3_0_release_notes.textile')
-rw-r--r-- | railties/guides/source/3_0_release_notes.textile | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/railties/guides/source/3_0_release_notes.textile b/railties/guides/source/3_0_release_notes.textile index b519a9c524..9957287178 100644 --- a/railties/guides/source/3_0_release_notes.textile +++ b/railties/guides/source/3_0_release_notes.textile @@ -149,6 +149,11 @@ Also, the views generated by Railties generators had some overhaul: * Scaffolds generated now make use of <tt>_form</tt> partials, instead of duplicated code in the edit and new views. * Scaffold forms now use <tt>f.submit</tt> which returns "Create ModelName" or "Update ModelName" depending on the state of the object passed in. +Finally a couple of enhancements were added to the rake tasks: + +* <tt>rake db:forward</tt> was added, allowing you to roll forward your migrations individually or in groups. +* <tt>rake routes CONTROLLER=x</tt> was added allowing you to just view the routes for one controller. + Railties now deprecates: * <tt>RAILS_ROOT</tt> in favour of <tt>Rails.root</tt>, @@ -365,9 +370,10 @@ Additionally, many fixes in the Active Record branch: * SQLite 2 support has been dropped in favour of SQLite 3. * MySQL support for column order. * PostgreSQL adapter has had it's +TIME ZONE+ support fixed so it no longer inserts incorrect values. +* Support multiple schemas in table names for PostgreSQL. * PostgreSQL support for the XML data type column. * +table_name+ is now cached. -* Large amount of work done on the Oracle adapter with many fixes. +* A large amount of work done on the Oracle adapter as well with many bug fixes. As well as the following deprecations: |