-
Notifications
You must be signed in to change notification settings - Fork 0
Database
kitiya edited this page Mar 12, 2020
·
18 revisions
PSequel, a PostgreSQL GUI tool, provides a clean and simple interface for you to perform common PostgreSQL tasks quickly.
$ brew doctor
$ brew update
$ brew install postgresql
createdb <database_name>
psql -U postgres -l
psql -U postgres -d <database_name>
dropdb <database_name>
dropdb <database_name> && createdb <database_name>