aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRafael França <rafaelmfranca@gmail.com>2017-11-26 22:00:38 -0500
committerGitHub <noreply@github.com>2017-11-26 22:00:38 -0500
commit959d7f73a7825ff7d62b5df3ed8b4ca3006db331 (patch)
tree27702a14cfa5b34f0c32f69233e2adce15ee56d1
parent0e2cd3d749dadcdb5027d48399aea02ef74815f3 (diff)
parent39da171f3c92c6c025a4beaa909ed5180974c094 (diff)
downloadrails-959d7f73a7825ff7d62b5df3ed8b4ca3006db331.tar.gz
rails-959d7f73a7825ff7d62b5df3ed8b4ca3006db331.tar.bz2
rails-959d7f73a7825ff7d62b5df3ed8b4ca3006db331.zip
Merge pull request #31167 from albertoalmagro/clean-db-ambiguity
Clean database naming ambiguity
-rw-r--r--railties/lib/rails/tasks/engine.rake4
1 files changed, 2 insertions, 2 deletions
diff --git a/railties/lib/rails/tasks/engine.rake b/railties/lib/rails/tasks/engine.rake
index 9db9d78ec4..8d77904210 100644
--- a/railties/lib/rails/tasks/engine.rake
+++ b/railties/lib/rails/tasks/engine.rake
@@ -53,7 +53,7 @@ namespace :db do
desc "Rolls the schema back to the previous version (specify steps w/ STEP=n)."
app_task "rollback"
- desc "Create a db/schema.rb file that can be portably used against any DB supported by Active Record"
+ desc "Create a db/schema.rb file that can be portably used against any database supported by Active Record"
app_task "schema:dump"
desc "Load a schema.rb file into the database"
@@ -62,7 +62,7 @@ namespace :db do
desc "Load the seed data from db/seeds.rb"
app_task "seed"
- desc "Create the database, load the schema, and initialize with the seed data (use db:reset to also drop the db first)"
+ desc "Create the database, load the schema, and initialize with the seed data (use db:reset to also drop the database first)"
app_task "setup"
desc "Dump the database structure to an SQL file"