- Rentomatic version: 2.0.1
- Python version: -
- Operating System: -
Description
If you follow the book to that part:
Now we can list the available tables with \dt and describe a table with \d
You will get no tables:
application=# \dt
Did not find any relations.
application=# \d
Did not find any relations.
This is because ./manage.py init-postgres is only creating the db, and after that, you are asked to add a line of data with insert before the tables are created.
What I Did
Followed the book.