aboutsummaryrefslogtreecommitdiffstats
path: root/lib/dbshell/rails/tasks/dbshell.rake
blob: c9011421f8735aaa0ae73fcb0f63f39f4c8731d6 (plain)
1
2
3
4
5
6
7
8
9
require 'dbshell/database_client'

task :dbshell do
  env = ENV.fetch('RAILS_ENV', 'development')

  DBShell::DatabaseClient.runshell(
    Rails.application.config.database_configuration[env]
  )
end