diff options
author | Yves Senn <yves.senn@gmail.com> | 2016-01-19 20:15:31 +0100 |
---|---|---|
committer | Yves Senn <yves.senn@gmail.com> | 2016-01-19 20:15:31 +0100 |
commit | e0b5533be6424d19d5744e2b0aba81457b15d375 (patch) | |
tree | baa1e435924588950dbf486210c9c4fadbc6dc98 /guides/source/command_line.md | |
parent | ba24d42828283156eba8544113739ce0c14283f0 (diff) | |
parent | d0c62d9d1ee5af224c7651ecc7bc8075f615c826 (diff) | |
download | rails-e0b5533be6424d19d5744e2b0aba81457b15d375.tar.gz rails-e0b5533be6424d19d5744e2b0aba81457b15d375.tar.bz2 rails-e0b5533be6424d19d5744e2b0aba81457b15d375.zip |
Merge pull request #23124 from vipulnsward/rake-rails
- Changed from bin/rake to bin/rails at more application places. [ci skip]
Diffstat (limited to 'guides/source/command_line.md')
-rw-r--r-- | guides/source/command_line.md | 2 |
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 |