Method: Ardb::Adapter::Postgresql#create_db
- Defined in:
- lib/ardb/adapter/postgresql.rb
#create_db ⇒ Object
17 18 19 20 21 22 23 24 |
# File 'lib/ardb/adapter/postgresql.rb', line 17 def create_db ActiveRecord::Base.establish_connection(public_connect_hash) ActiveRecord::Base.connection.create_database( database, connect_hash, ) ActiveRecord::Base.establish_connection(connect_hash) end |