Skip to content

Commit

Permalink
Merge pull request #343 from BrainScraps/master
Browse files Browse the repository at this point in the history
updated description of rake db:migrate
  • Loading branch information
alexch committed Apr 12, 2014
2 parents bde7378 + 9118d8f commit b9dca72
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion sites/en/intro-to-rails/creating_a_migration.step
Expand Up @@ -36,7 +36,7 @@ explanation {
message <<-MARKDOWN
`rake` _(ruby make)_ is a tool that allows you to run small Ruby programs (**tasks**) that you use often in your application.

Here, `rake db:migrate` is a task provided by the Rails framework. It creates a bunch of new files, including a *migration*, a *model*, a *view*, and a *controller*.
Here, `rake db:migrate` is a task provided by the Rails framework. It uses the migration file we just created (`db/migrate/201xxxxxxxxxxx_create_topics.rb`) to change the database. Database migration files can be crucial to code collaboration.

MARKDOWN

Expand Down

0 comments on commit b9dca72

Please sign in to comment.