aboutsummaryrefslogtreecommitdiffstats
path: root/guides/source
diff options
context:
space:
mode:
authorYves Senn <yves.senn@gmail.com>2015-06-08 15:29:25 +0200
committerYves Senn <yves.senn@gmail.com>2015-06-08 15:29:25 +0200
commit90effb45a9e5004abbd6984008457075cc7bb089 (patch)
tree402d859b90a7cb5e0b2615a76f3dad2ddf868404 /guides/source
parente8d02ccf8c485cd2e5f6e32713bd8fc23b7b5560 (diff)
parent02b8087464fe091c6c6c7ee6769aebd639d6acd4 (diff)
downloadrails-90effb45a9e5004abbd6984008457075cc7bb089.tar.gz
rails-90effb45a9e5004abbd6984008457075cc7bb089.tar.bz2
rails-90effb45a9e5004abbd6984008457075cc7bb089.zip
Merge pull request #20381 from kuldeepaggarwal/engines-docs
fix docs for Engines [ci skip]
Diffstat (limited to 'guides/source')
-rw-r--r--guides/source/engines.md10
1 files changed, 5 insertions, 5 deletions
diff --git a/guides/source/engines.md b/guides/source/engines.md
index a89ed1984f..3b1588b75a 100644
--- a/guides/source/engines.md
+++ b/guides/source/engines.md
@@ -689,8 +689,8 @@ haven't been copied over already. The first run for this command will output
something such as this:
```bash
-Copied migration [timestamp_1]_create_blorgh_articles.rb from blorgh
-Copied migration [timestamp_2]_create_blorgh_comments.rb from blorgh
+Copied migration [timestamp_1]_create_blorgh_articles.blorgh.rb from blorgh
+Copied migration [timestamp_2]_create_blorgh_comments.blorgh.rb from blorgh
```
The first timestamp (`[timestamp_1]`) will be the current time, and the second
@@ -822,9 +822,9 @@ Notice that only _one_ migration was copied over here. This is because the first
two migrations were copied over the first time this command was run.
```
-NOTE Migration [timestamp]_create_blorgh_articles.rb from blorgh has been skipped. Migration with the same name already exists.
-NOTE Migration [timestamp]_create_blorgh_comments.rb from blorgh has been skipped. Migration with the same name already exists.
-Copied migration [timestamp]_add_author_id_to_blorgh_articles.rb from blorgh
+NOTE Migration [timestamp]_create_blorgh_articles.blorgh.rb from blorgh has been skipped. Migration with the same name already exists.
+NOTE Migration [timestamp]_create_blorgh_comments.blorgh.rb from blorgh has been skipped. Migration with the same name already exists.
+Copied migration [timestamp]_add_author_id_to_blorgh_articles.blorgh.rb from blorgh
```
Run the migration using: