aboutsummaryrefslogtreecommitdiffstats
path: root/guides/source/engines.md
diff options
context:
space:
mode:
authorKevin Ndung'u Gathuku <kevgathuku@users.noreply.github.com>2018-05-25 13:12:34 +0300
committerGitHub <noreply@github.com>2018-05-25 13:12:34 +0300
commitaea813d1d70cd94f503a5d2d48a7d605a1e9c9bb (patch)
treeeb2c4cf1d74c90d6b86730d1a47ff211a88ad42c /guides/source/engines.md
parentcd4a88123dc17462d5c2ff29172b0366bca14e0e (diff)
downloadrails-aea813d1d70cd94f503a5d2d48a7d605a1e9c9bb.tar.gz
rails-aea813d1d70cd94f503a5d2d48a7d605a1e9c9bb.tar.bz2
rails-aea813d1d70cd94f503a5d2d48a7d605a1e9c9bb.zip
Change location for running copy migrations command
This fixes the location from where the command to copy migrations from the engine to the application should be run [ci skip]
Diffstat (limited to 'guides/source/engines.md')
-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 9dbce5d09b..78a699a15e 100644
--- a/guides/source/engines.md
+++ b/guides/source/engines.md
@@ -695,7 +695,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 run the following command from the `test/dummy` directory of your Rails engine:
+application run the following command from the application's root:
```bash
$ bin/rails blorgh:install:migrations