diff options
author | Andrew White <andyw@pixeltrix.co.uk> | 2015-04-22 14:44:04 -0400 |
---|---|---|
committer | Andrew White <andyw@pixeltrix.co.uk> | 2015-04-22 14:47:13 -0400 |
commit | 688c0ec26454c9ab64d8d11fc689a3fe9ab5924f (patch) | |
tree | f710d8a8a070a6e5de329f6cfbb2b87cc641205c /railties/lib | |
parent | 7196372a8ea01329fd49c5e71d392385f2b2e7e6 (diff) | |
download | rails-688c0ec26454c9ab64d8d11fc689a3fe9ab5924f.tar.gz rails-688c0ec26454c9ab64d8d11fc689a3fe9ab5924f.tar.bz2 rails-688c0ec26454c9ab64d8d11fc689a3fe9ab5924f.zip |
Remove sqlite support from `rails dbconsole`
Support for versions of SQLite less than 3 was removed in #6011 as part
of the Rails 4.0 release. Therefore there is no need to have support for
it in the `rails dbconsole` command anymore.
Diffstat (limited to 'railties/lib')
-rw-r--r-- | railties/lib/rails/commands/dbconsole.rb | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/railties/lib/rails/commands/dbconsole.rb b/railties/lib/rails/commands/dbconsole.rb index 5701ffd104..3b22b582cf 100644 --- a/railties/lib/rails/commands/dbconsole.rb +++ b/railties/lib/rails/commands/dbconsole.rb @@ -50,9 +50,6 @@ module Rails ENV['PGPASSWORD'] = config["password"].to_s if config["password"] && options['include_password'] find_cmd_and_exec('psql', config["database"]) - when "sqlite" - find_cmd_and_exec('sqlite', config["database"]) - when "sqlite3" args = [] |