Home
Head's Up: I'm in the middle of upgrading my site. Most things are in place, but there are something missing and/or broken including image alt text. Please bear with me while I'm getting things fixed.

Create A Postgres Database

Creating a postgres database can be done from the command line with :

createdb new_database_name

vai : https : //www.postgresql.org/docs/current/tutorial - createdb.html

Old Notes

Connect to the main [TODO: Code shorthand span ] database with a user that has create database privileges via :

psql -U user_name -d postgres

(Or, [TODO: Code shorthand span ] if your setup for that)

Run :

CREATE DATABASE your_database_name;

The database is made from a clone of the [TODO: Code shorthand span ] database. So, any changes made there will show up in your new database.

NOTES :

You can check what permissions users have with [TODO: Code shorthand span ] when logged into the database