diff options
author | Sean Griffin <sean@seantheprogrammer.com> | 2015-10-19 19:36:43 -0600 |
---|---|---|
committer | Sean Griffin <sean@seantheprogrammer.com> | 2015-10-19 19:36:43 -0600 |
commit | d57d5595c0cb1e9859cac77fd9507320b67aadda (patch) | |
tree | 0a7af0576d4e9fde7fa5c9cf787ba723ad18cbe8 /guides/source | |
parent | b859d97081c688f627eda30fc1c601e4ec070205 (diff) | |
parent | 407c87011d977c175695d42dc757d88b01e71a46 (diff) | |
download | rails-d57d5595c0cb1e9859cac77fd9507320b67aadda.tar.gz rails-d57d5595c0cb1e9859cac77fd9507320b67aadda.tar.bz2 rails-d57d5595c0cb1e9859cac77fd9507320b67aadda.zip |
Merge pull request #22001 from cleverlemming/doc_patch_engines
Added context for running engine:migrations:install task. [ci skip]
Diffstat (limited to 'guides/source')
-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 71844b7990..f961b799f1 100644 --- a/guides/source/engines.md +++ b/guides/source/engines.md @@ -670,7 +670,7 @@ pre-defined path which may be customizable. The engine contains migrations for the `blorgh_articles` 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: +application run the following command from the `test/dummy` directory of your Rails engine: ```bash $ rake blorgh:install:migrations |