aboutsummaryrefslogtreecommitdiffstats
path: root/guides
diff options
context:
space:
mode:
authorGrayson Wright <wright.grayson@gmail.com>2013-04-02 08:31:45 -0700
committerGrayson Wright <wright.grayson@gmail.com>2013-04-02 08:31:45 -0700
commit4b8ea379f1df22e209de38c72e6f0a5d405da082 (patch)
tree12b25289bc2cdd33271bba90876b2e6d30c6af80 /guides
parentbff281e759e4fb4353391f002300de49795c5c61 (diff)
parent62b9723fbf166f441316e6ed53bb96b8e2995027 (diff)
downloadrails-4b8ea379f1df22e209de38c72e6f0a5d405da082.tar.gz
rails-4b8ea379f1df22e209de38c72e6f0a5d405da082.tar.bz2
rails-4b8ea379f1df22e209de38c72e6f0a5d405da082.zip
Merge pull request #131 from lazylester/master
Edge rails new syntax for importing engine migration
Diffstat (limited to 'guides')
-rw-r--r--guides/source/engines.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/guides/source/engines.md b/guides/source/engines.md
index ac76f00832..22c090e04b 100644
--- a/guides/source/engines.md
+++ b/guides/source/engines.md
@@ -461,7 +461,7 @@ NOTE: Other engines, such as Devise, handle this a little differently by making
The engine contains migrations for the `blorgh_posts` and `blorgh_comments` table which need to be created in the application's database so that the engine's models can query them correctly. To copy these migrations into the application use this command:
```bash
-$ rake blorgh:install:migrations
+$ rake blorgh_engine:install:migrations
```
If you have multiple engines that need migrations copied over, use `railties:install:migrations` instead: