diff options
author | Alberto Almagro <albertoalmagro@gmail.com> | 2018-06-29 18:49:05 +0200 |
---|---|---|
committer | Alberto Almagro <albertoalmagro@gmail.com> | 2018-07-06 22:46:54 +0200 |
commit | 2e194d0c9edfa54cb955b48fa204de2f4c980239 (patch) | |
tree | b4d26db1ddda8308231fff3a672d1e46fb2bee20 /activerecord | |
parent | a7986aeda0b60a1453d7aa70077abcaa7ecab369 (diff) | |
download | rails-2e194d0c9edfa54cb955b48fa204de2f4c980239.tar.gz rails-2e194d0c9edfa54cb955b48fa204de2f4c980239.tar.bz2 rails-2e194d0c9edfa54cb955b48fa204de2f4c980239.zip |
Substitute references to task for command
This commit substitutes references to rails/rake task for rails command
Diffstat (limited to 'activerecord')
-rw-r--r-- | activerecord/lib/active_record/migration.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/activerecord/lib/active_record/migration.rb b/activerecord/lib/active_record/migration.rb index ee642d6063..d68ed3cad9 100644 --- a/activerecord/lib/active_record/migration.rb +++ b/activerecord/lib/active_record/migration.rb @@ -352,7 +352,7 @@ module ActiveRecord # <tt>rails db:migrate</tt>. This will update the database by running all of the # pending migrations, creating the <tt>schema_migrations</tt> table # (see "About the schema_migrations table" section below) if missing. It will also - # invoke the db:schema:dump task, which will update your db/schema.rb file + # invoke the db:schema:dump command, which will update your db/schema.rb file # to match the structure of your database. # # To roll the database back to a previous migration version, use |