method

create

Importance_0
create(master_established = false) public

No documentation

This method has no description. You can help the Ruby on Rails community by adding new notes.

Hide source
# File activerecord/lib/active_record/tasks/postgresql_database_tasks.rb, line 19 def create(master_established = false) establish_master_connection unless master_established connection.create_database configuration["database"], configuration.merge("encoding" => encoding) establish_connection configuration rescue ActiveRecord::StatementInvalid => error if error.cause.is_a?(PG::DuplicateDatabase) raise DatabaseAlreadyExists else raise end end
Register or log in to add new notes.