Django I am trying to add a new table/model from Django models to my existing postgres database with tables already but the only solution is to start from scratch again
Solution: Delete migrations, delete all the tables in the postgres database. python manage.py makemigrations, python manage.py migrate
Error: The table does not exist when browsing the drf api or the postgres database after trying to makemigrations and migrate with the new models.