Creating a database
From the command line, you can run:
> createdb newdb
Where createdb
is a command line tool provided by PostgreSQL for creating databases. The value after the createdb
command is the name of your new database. Or in my case, newdb
. Replace newdb
to be whatever you name you want to use to describe your database.