From 688c0ec26454c9ab64d8d11fc689a3fe9ab5924f Mon Sep 17 00:00:00 2001 From: Andrew White Date: Wed, 22 Apr 2015 14:44:04 -0400 Subject: 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. --- railties/lib/rails/commands/dbconsole.rb | 3 --- 1 file changed, 3 deletions(-) (limited to 'railties/lib/rails') 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 = [] -- cgit v1.2.3