aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorKasper Timm Hansen <kaspth@gmail.com>2018-07-02 19:51:00 +0200
committerGitHub <noreply@github.com>2018-07-02 19:51:00 +0200
commite4282e2fbf00711c374fdb67c0842952f2b227f7 (patch)
tree86289eddd7388aae314266833c593f0c293144fc
parent324f6fa20779433578f8c0cbaf4ff9343817dd4b (diff)
parentaea813d1d70cd94f503a5d2d48a7d605a1e9c9bb (diff)
downloadrails-e4282e2fbf00711c374fdb67c0842952f2b227f7.tar.gz
rails-e4282e2fbf00711c374fdb67c0842952f2b227f7.tar.bz2
rails-e4282e2fbf00711c374fdb67c0842952f2b227f7.zip
Merge pull request #32987 from kevgathuku/patch-2
Change location for running copy migrations command
-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