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

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

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