Have you changed or deleted any migrations?
Anyway. You can look into the postgres console and try:
to get a list of all the databases (to find yours)
\list
thereafter
\c yourdatabasename_yourenvironment
and
\dt
to see all the tables in the postgres database.
source
share