Method: DummyApp::Migrations#database_exists?

Defined in:
lib/spree/testing_support/dummy_app/migrations.rb

#database_exists?Boolean

Ensure database exists

Returns:

  • (Boolean)


8
9
10
11
12
13
14
# File 'lib/spree/testing_support/dummy_app/migrations.rb', line 8

def database_exists?
  ActiveRecord::Base.connection
rescue ActiveRecord::NoDatabaseError
  false
else
  true
end