Postgres HowTos
To login
To quit
To drop tables from Postgres, documentation here
You generally need to do this when there is some problem with migrations, and you need to drop a table so a migration can build it.
To add tables to Postgres, documentation here
In general, you shouldn't need to do this. This should always be done with migrations. Remember, you can write SQL migrations.
Last updated