Adding in rake task updates and extra data on postgres and oracle fixes

This commit is contained in:
Mikel Lindsaar
2010-02-02 10:17:46 +11:00
parent cc2fa4d713
commit 783e583d9c

View File

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