create_database(name, options = {})
Instance Public methods
Create a new PostgreSQL database. Options include :owner
,
:template
, :encoding
(defaults to utf8),
:collation
, :ctype
, :tablespace
, and
:connection_limit
(note that MySQL uses :charset
while PostgreSQL uses :encoding
).
Example:
1 2 | create_database config[ :database ], config create_database 'foo_development' , encoding: 'unicode' |
Please login to continue.