I renamed some django app , and now want to run migrate
to update the database. But I get the following error because the old names still are still referenced in the migrations files.
ValueError: Lookup failed for model referenced by field pr1.Ticket.project: prod.Project
I already tried ./manage.py flush
to reset the database, but that doesn't seem to help.
What is the correct way to 'reset' or initialize the migrations?