aboutsummaryrefslogtreecommitdiffstats
path: root/railties/lib
diff options
context:
space:
mode:
author <JRadosz@gmail.com>2011-04-12 00:59:55 -0700
committer <JRadosz@gmail.com>2011-04-12 00:59:55 -0700
commit4e873ffcdab0c445e2211db1d27ddd5b349f7913 (patch)
tree2eb56b6ed7b07b704006d6c93d4a7e1fbd066088 /railties/lib
parentb53ffb35e085362bb2690577ae123a1f4872c12a (diff)
downloadrails-4e873ffcdab0c445e2211db1d27ddd5b349f7913.tar.gz
rails-4e873ffcdab0c445e2211db1d27ddd5b349f7913.tar.bz2
rails-4e873ffcdab0c445e2211db1d27ddd5b349f7913.zip
Corrected dbconsole usage message.
Diffstat (limited to 'railties/lib')
-rw-r--r--railties/lib/rails/commands/dbconsole.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/railties/lib/rails/commands/dbconsole.rb b/railties/lib/rails/commands/dbconsole.rb
index f0d6ea1687..b0ba76217a 100644
--- a/railties/lib/rails/commands/dbconsole.rb
+++ b/railties/lib/rails/commands/dbconsole.rb
@@ -23,7 +23,7 @@ module Rails
include_password = false
options = {}
OptionParser.new do |opt|
- opt.banner = "Usage: dbconsole [options] [environment]"
+ opt.banner = "Usage: dbconsole [environment] [options]"
opt.on("-p", "--include-password", "Automatically provide the password from database.yml") do |v|
include_password = true
end