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 _form partials, instead of duplicated code in the edit and new views.
* Scaffold forms now use f.submit 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:
+
+* rake db:forward was added, allowing you to roll forward your migrations individually or in groups.
+* rake routes CONTROLLER=x was added allowing you to just view the routes for one controller.
+
Railties now deprecates:
* RAILS_ROOT in favour of Rails.root,
@@ -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: