2022-03-09 22:59:58 +00:00
|
|
|
# createdb
|
|
|
|
|
|
|
|
> Create a PostgreSQL database.
|
|
|
|
> More information: <https://www.postgresql.org/docs/current/app-createdb.html>.
|
|
|
|
|
|
|
|
- Create a database owned by the current user:
|
|
|
|
|
|
|
|
`createdb {{database_name}}`
|
|
|
|
|
|
|
|
- Create a database owned by a specific user with a description:
|
|
|
|
|
2024-04-18 19:38:25 +01:00
|
|
|
`createdb --owner {{username}} {{database_name}} '{{description}}'`
|
2022-03-09 22:59:58 +00:00
|
|
|
|
|
|
|
- Create a database from a template:
|
|
|
|
|
2024-04-18 19:38:25 +01:00
|
|
|
`createdb --template {{template_name}} {{database_name}}`
|