logo
Free, unlimited AI code reviews that run on commit
git-lrc git-lrc GitHub Install Now We'd appreciate a star git-lrc - Free, unlimited AI code reviews that run on commit | Product Hunt git-lrc - Free, unlimited AI code reviews that run on commit | Product Hunt

Create PostgreSQL Database - Create DB with createdb | Online Free DevTools by Hexmos

Create PostgreSQL database effortlessly with createdb. Manage database ownership, templates, and descriptions with ease. Free online tool, no registration required.

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:

createdb {{[-O|--owner]}} {{username}} {{database_name}} '{{description}}'

  • Create a database from a template:

createdb {{[-T|--template]}} {{template_name}} {{database_name}}

See Also