Method: ActiveRecord::ConnectionAdapters::PostgreSQL::SchemaStatements#recreate_database

Defined in:
lib/active_record/connection_adapters/postgresql/schema_statements.rb

#recreate_database(name, options = {}) ⇒ Object

Drops the database specified on the name attribute and creates it again using the provided options.



9
10
11
12
# File 'lib/active_record/connection_adapters/postgresql/schema_statements.rb', line 9

def recreate_database(name, options = {}) # :nodoc:
  drop_database(name)
  create_database(name, options)
end