This method is deprecated or moved on the latest stable version. The last existing version (v4.1.8) is shown here.
drop_database(name)
Drops a PostgreSQL database.
Example:
drop_database 'matt_development'
# File activerecord/lib/active_record/connection_adapters/postgresql/schema_statements.rb, line 87 def drop_database(name) #:nodoc: execute "DROP DATABASE IF EXISTS #{quote_table_name(name)}" end