Postgres HowTos
sudo su - postgres
psql
\l #lists databases
\connect database_name #to connect to that database
\dt #lists tables\q
exit #to get out of the postgres userDROP TABLE table_name CASCADE; #to drop a table, cascades and deletes dependenciesLast updated