diff options
author | Robin Dupret <robin.dupret@gmail.com> | 2017-07-16 14:54:04 +0200 |
---|---|---|
committer | Robin Dupret <robin.dupret@gmail.com> | 2017-07-16 15:10:39 +0200 |
commit | 3777701f1380f3814bd5313b225586dec64d4104 (patch) | |
tree | e77262bb855ee85c59b618648f17e2473854c815 /railties/lib/rails/commands/dbconsole | |
parent | 48b249927375465a7102acc71c2dfb8d49af8309 (diff) | |
download | rails-3777701f1380f3814bd5313b225586dec64d4104.tar.gz rails-3777701f1380f3814bd5313b225586dec64d4104.tar.bz2 rails-3777701f1380f3814bd5313b225586dec64d4104.zip |
Properly expand the environment's name
Running the `console` and `dbconsole` commands with a regular argument
as the environment's name automatically expand it to match an existing
environment (e.g. dev for development).
This feature wasn't available using the `--environment` (a.k.a `-e`)
option.
Diffstat (limited to 'railties/lib/rails/commands/dbconsole')
-rw-r--r-- | railties/lib/rails/commands/dbconsole/dbconsole_command.rb | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/railties/lib/rails/commands/dbconsole/dbconsole_command.rb b/railties/lib/rails/commands/dbconsole/dbconsole_command.rb index 383149eb81..a66eb16421 100644 --- a/railties/lib/rails/commands/dbconsole/dbconsole_command.rb +++ b/railties/lib/rails/commands/dbconsole/dbconsole_command.rb @@ -151,9 +151,6 @@ module Rails class_option :header, type: :boolean - class_option :environment, aliases: "-e", type: :string, - desc: "Specifies the environment to run this console under (test/development/production)." - class_option :connection, aliases: "-c", type: :string, desc: "Specifies the connection to use." |