aboutsummaryrefslogtreecommitdiffstats
path: root/guides/source/command_line.md
diff options
context:
space:
mode:
authorVipul A M <vipulnsward@gmail.com>2016-01-20 00:34:31 +0530
committerVipul A M <vipulnsward@gmail.com>2016-01-20 00:34:31 +0530
commitd0c62d9d1ee5af224c7651ecc7bc8075f615c826 (patch)
treec83e716636c74bb9e18c8447f2b71786dfe62082 /guides/source/command_line.md
parent1347f08521881efacfc42a7284073272affc1d1e (diff)
downloadrails-d0c62d9d1ee5af224c7651ecc7bc8075f615c826.tar.gz
rails-d0c62d9d1ee5af224c7651ecc7bc8075f615c826.tar.bz2
rails-d0c62d9d1ee5af224c7651ecc7bc8075f615c826.zip
- Changed from bin/rake to bin/rails at more application places.
- Only ones left are from the upgrading guide, and command line guide explicit section about rake Follow up of https://github.com/rails/rails/pull/23119 [ci skip]
Diffstat (limited to 'guides/source/command_line.md')
-rw-r--r--guides/source/command_line.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/guides/source/command_line.md b/guides/source/command_line.md
index 5240b5f343..020ea0c920 100644
--- a/guides/source/command_line.md
+++ b/guides/source/command_line.md
@@ -253,7 +253,7 @@ The generator checks that there exist the directories for models, controllers, h
The migration requires that we **migrate**, that is, run some Ruby code (living in that `20130717151933_create_high_scores.rb`) to modify the schema of our database. Which database? The SQLite3 database that Rails will create for you when we run the `rake db:migrate` command. We'll talk more about Rake in-depth in a little while.
```bash
-$ bin/rake db:migrate
+$ bin/rails db:migrate
== CreateHighScores: migrating ===============================================
-- create_table(:high_scores)
-> 0.0017s