Postgres HowTos
Last updated
Last updated
To login
To quit
To drop tables from Postgres, documentation
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
In general, you shouldn't need to do this. This should always be done with migrations. Remember, you can write SQL migrations.