aboutsummaryrefslogtreecommitdiffstats
path: root/guides
diff options
context:
space:
mode:
authorHarshad Sabne <harshadsabne@users.noreply.github.com>2014-09-04 10:16:44 +0530
committerHarshad Sabne <harshadsabne@users.noreply.github.com>2014-09-04 10:16:44 +0530
commitf57fd2f5d5fe65412f4f5b9f13be1663de57938e (patch)
treee540df966c55b4eeef901c29a50daf5cd53ef8e0 /guides
parent1fc2e704956a4a931006211fb8a032213a82dea2 (diff)
downloadrails-f57fd2f5d5fe65412f4f5b9f13be1663de57938e.tar.gz
rails-f57fd2f5d5fe65412f4f5b9f13be1663de57938e.tar.bz2
rails-f57fd2f5d5fe65412f4f5b9f13be1663de57938e.zip
'Reversible' ->active_record_migrations [ci skip]
Reversible method documentation moved from migrations.md to active_record_migrations.md
Diffstat (limited to 'guides')
-rw-r--r--guides/source/4_0_release_notes.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/guides/source/4_0_release_notes.md b/guides/source/4_0_release_notes.md
index 1aaf5ebc94..da212a3c9d 100644
--- a/guides/source/4_0_release_notes.md
+++ b/guides/source/4_0_release_notes.md
@@ -229,7 +229,7 @@ Please refer to the [Changelog](https://github.com/rails/rails/blob/4-0-stable/a
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.
- See the [Guide on Migration](https://github.com/rails/rails/blob/master/guides/source/migrations.md#using-the-reversible-method)
+ See the [Guide on Migration](https://github.com/rails/rails/blob/master/guides/source/active_record_migrations.md#using-reversible)
* New method `revert` will revert a whole migration or the given block.
If migrating down, the given migration / block is run normally.