diff options
author | Rafael Mendonça França <rafaelmfranca@gmail.com> | 2015-04-22 15:11:27 -0300 |
---|---|---|
committer | Rafael Mendonça França <rafaelmfranca@gmail.com> | 2015-04-22 15:11:27 -0300 |
commit | d0ec2a98563a9591912bd1371b645c7ea21c57db (patch) | |
tree | 0ac91e06db0b575f07d1e2c735b07161dfb30a84 /railties/lib/rails/commands | |
parent | 3ab66a0ce4c181be7fbf4c23c37a147b1331d6a3 (diff) | |
download | rails-d0ec2a98563a9591912bd1371b645c7ea21c57db.tar.gz rails-d0ec2a98563a9591912bd1371b645c7ea21c57db.tar.bz2 rails-d0ec2a98563a9591912bd1371b645c7ea21c57db.zip |
Don't ask something that we don't want to
We only want to support adapters that we officially support through the
entire framework so it is better to not ask patches for adapters that
we may not support
Diffstat (limited to 'railties/lib/rails/commands')
-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 5175e31f14..5701ffd104 100644 --- a/railties/lib/rails/commands/dbconsole.rb +++ b/railties/lib/rails/commands/dbconsole.rb @@ -89,7 +89,7 @@ module Rails find_cmd_and_exec("sqsh", *args) else - abort "Unknown command-line client for #{config['database']}. Submit a Rails patch to add support!" + abort "Unknown command-line client for #{config['database']}." end end |