aboutsummaryrefslogtreecommitdiffstats
path: root/railties/CHANGELOG.md
diff options
context:
space:
mode:
authorJosé Valim <jose.valim@gmail.com>2011-12-24 10:51:47 +0100
committerJosé Valim <jose.valim@gmail.com>2011-12-24 10:52:45 +0100
commitfc4299805e5dc6cee0c81a94b2fcb9bb2a714b01 (patch)
treec94704db1989b34b03fb7c3aca90c7173cea242f /railties/CHANGELOG.md
parent557014d45aeed82ed1e79b83ab59697392a1a5de (diff)
downloadrails-fc4299805e5dc6cee0c81a94b2fcb9bb2a714b01.tar.gz
rails-fc4299805e5dc6cee0c81a94b2fcb9bb2a714b01.tar.bz2
rails-fc4299805e5dc6cee0c81a94b2fcb9bb2a714b01.zip
Update CHANGELOGs.
Diffstat (limited to 'railties/CHANGELOG.md')
-rw-r--r--railties/CHANGELOG.md2
1 files changed, 2 insertions, 0 deletions
diff --git a/railties/CHANGELOG.md b/railties/CHANGELOG.md
index 0bd76df6d7..4e24525f23 100644
--- a/railties/CHANGELOG.md
+++ b/railties/CHANGELOG.md
@@ -1,5 +1,7 @@
## Rails 3.2.0 (unreleased) ##
+* Allow scaffold/model/migration generators to accept a "index" and "uniq" modifiers, as in: "tracking_id:integer:uniq" in order to generate (unique) indexes. Some types also accept custom options, for instance, you can specify the precision and scale for decimals as "price:decimal{7,2}". *Dmitrii Samoilov*
+
* Added `config.exceptions_app` to set the exceptions application invoked by the ShowException middleware when an exception happens. Defaults to `ActionDispatch::PublicExceptions.new(Rails.public_path)`. *José Valim*
* Speed up development by only reloading classes if dependencies files changed. This can be turned off by setting `config.reload_classes_only_on_change` to false. *José Valim*