aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/CHANGELOG.md
diff options
context:
space:
mode:
authorbondarev <alexander.i.bondarev@gmail.com>2013-02-25 19:05:22 +0400
committerbondarev <alexander.i.bondarev@gmail.com>2013-04-18 18:18:59 +0400
commit2976558bc3a02019b605a1d70fda76ba5e9b5df2 (patch)
treef7fce26c5be8b73cd7907b5e0fd23e5772d9b3c2 /activerecord/CHANGELOG.md
parent130d3a06ade83aec27cf1d2ff841dce9e0ad4dfd (diff)
downloadrails-2976558bc3a02019b605a1d70fda76ba5e9b5df2.tar.gz
rails-2976558bc3a02019b605a1d70fda76ba5e9b5df2.tar.bz2
rails-2976558bc3a02019b605a1d70fda76ba5e9b5df2.zip
Support transactions in Migrator.run
Diffstat (limited to 'activerecord/CHANGELOG.md')
-rw-r--r--activerecord/CHANGELOG.md4
1 files changed, 4 insertions, 0 deletions
diff --git a/activerecord/CHANGELOG.md b/activerecord/CHANGELOG.md
index 062c548f20..79f9232050 100644
--- a/activerecord/CHANGELOG.md
+++ b/activerecord/CHANGELOG.md
@@ -1,5 +1,9 @@
## Rails 4.0.0 (unreleased) ##
+* Run migrate:down & migrate:up in transaction if database supports
+
+ *Alexander Bondarev*
+
* Added Statement Cache to allow the caching of a single statement. The cache works by
duping the relation returned from yielding a statement, which allows skipping the AST
building phase for following executes. The cache returns results in array format.