diff options
author | Grayson Wright <wright.grayson@gmail.com> | 2013-04-02 08:31:45 -0700 |
---|---|---|
committer | Grayson Wright <wright.grayson@gmail.com> | 2013-04-02 08:31:45 -0700 |
commit | 4b8ea379f1df22e209de38c72e6f0a5d405da082 (patch) | |
tree | 12b25289bc2cdd33271bba90876b2e6d30c6af80 /guides | |
parent | bff281e759e4fb4353391f002300de49795c5c61 (diff) | |
parent | 62b9723fbf166f441316e6ed53bb96b8e2995027 (diff) | |
download | rails-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.md | 2 |
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: |