aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/CHANGELOG.md
diff options
context:
space:
mode:
authorJosé Valim <jose.valim@gmail.com>2012-06-10 11:38:37 +0200
committerJosé Valim <jose.valim@gmail.com>2012-06-10 11:38:37 +0200
commit03f2249153ae4d2078646e6796d8b9e5ef747fba (patch)
tree680e70837788456b717524fd2f046faa669e2ca0 /activerecord/CHANGELOG.md
parent4845c0685aa3983b4685d4afe141ac5d398521bc (diff)
downloadrails-03f2249153ae4d2078646e6796d8b9e5ef747fba.tar.gz
rails-03f2249153ae4d2078646e6796d8b9e5ef747fba.tar.bz2
rails-03f2249153ae4d2078646e6796d8b9e5ef747fba.zip
Use . instead of :: for class methods, add CHANGELOG entries
Diffstat (limited to 'activerecord/CHANGELOG.md')
-rw-r--r--activerecord/CHANGELOG.md3
1 files changed, 3 insertions, 0 deletions
diff --git a/activerecord/CHANGELOG.md b/activerecord/CHANGELOG.md
index 55cc85a63d..9daae27b36 100644
--- a/activerecord/CHANGELOG.md
+++ b/activerecord/CHANGELOG.md
@@ -1,5 +1,8 @@
## Rails 4.0.0 (unreleased) ##
+* Added `ActiveRecord::Migration.check_pending!` that raises an error if
+ migrations are pending. *Richard Schneeman*
+
* Added `#destroy!` which acts like `#destroy` but will raise an
`ActiveRecord::RecordNotDestroyed` exception instead of returning `false`.