diff options
author | Kasper Timm Hansen <kaspth@gmail.com> | 2018-07-02 19:51:00 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-07-02 19:51:00 +0200 |
commit | e4282e2fbf00711c374fdb67c0842952f2b227f7 (patch) | |
tree | 86289eddd7388aae314266833c593f0c293144fc /guides | |
parent | 324f6fa20779433578f8c0cbaf4ff9343817dd4b (diff) | |
parent | aea813d1d70cd94f503a5d2d48a7d605a1e9c9bb (diff) | |
download | rails-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
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 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 |