2025-03-14 21:59:59 -06: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:
|
|
|
|
|
|
2025-12-16 10:20:31 -07:00
|
|
|
`createdb {{[-O|--owner]}} {{username}} {{database_name}} '{{description}}'`
|
2025-03-14 21:59:59 -06:00
|
|
|
|
|
|
|
|
- Create a database from a template:
|
|
|
|
|
|
2025-12-16 10:20:31 -07:00
|
|
|
`createdb {{[-T|--template]}} {{template_name}} {{database_name}}`
|