diff options
author | José Valim <jose.valim@gmail.com> | 2011-05-07 03:34:28 -0700 |
---|---|---|
committer | José Valim <jose.valim@gmail.com> | 2011-05-07 03:34:28 -0700 |
commit | 9cc18c52faeebaad6a76bd62cdca1c6b9f96afed (patch) | |
tree | 181b4836b501045c9b81c8edbb19a8f4809e8adf | |
parent | b011a7a938b7289b7d08042474ff4bee07efb7fe (diff) | |
parent | 4e873ffcdab0c445e2211db1d27ddd5b349f7913 (diff) | |
download | rails-9cc18c52faeebaad6a76bd62cdca1c6b9f96afed.tar.gz rails-9cc18c52faeebaad6a76bd62cdca1c6b9f96afed.tar.bz2 rails-9cc18c52faeebaad6a76bd62cdca1c6b9f96afed.zip |
Merge pull request #263 from CvX/master
Corrected dbconsole usage message
-rw-r--r-- | railties/lib/rails/commands/dbconsole.rb | 2 |
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 |