aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord
diff options
context:
space:
mode:
authorXavier Noria <fxn@hashref.com>2013-02-19 18:04:19 +0100
committerXavier Noria <fxn@hashref.com>2013-02-19 18:12:54 +0100
commit276918098a13d13c9cc9b0a2dcd88a1086bf5d1a (patch)
treee1273b262d286faf091b932a6dc6a2ec0ee3f2d8 /activerecord
parent26eb1e4e7031609ea1a1c4d8196fbf3a13078172 (diff)
downloadrails-276918098a13d13c9cc9b0a2dcd88a1086bf5d1a.tar.gz
rails-276918098a13d13c9cc9b0a2dcd88a1086bf5d1a.tar.bz2
rails-276918098a13d13c9cc9b0a2dcd88a1086bf5d1a.zip
s/revertible/reversible/
Diffstat (limited to 'activerecord')
-rw-r--r--activerecord/CHANGELOG.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/activerecord/CHANGELOG.md b/activerecord/CHANGELOG.md
index 8ee179951f..00b2c431ac 100644
--- a/activerecord/CHANGELOG.md
+++ b/activerecord/CHANGELOG.md
@@ -240,7 +240,7 @@
* Improve ways to write `change` migrations, making the old `up` & `down` methods no longer necessary.
* The methods `drop_table` and `remove_column` are now reversible, as long as the necessary information is given.
- The method `remove_column` used to accept multiple column names; instead use `remove_columns` (which is not revertible).
+ The method `remove_column` used to accept multiple column names; instead use `remove_columns` (which is not reversible).
The method `change_table` is also reversible, as long as its block doesn't call `remove`, `change` or `change_default`
* New method `reversible` makes it possible to specify code to be run when migrating up or down.