I\'m trying to run the following PHP script to do a simple database query:
$db_host = \"localhost\";
$db_name = \"showfinder\";
$username = \"user\";
$passwo
For me the problem was, that I had used a query to that particular table while Django was initialized. Of course it will then throw an error, because those tables did not exist. In my case, it was a get_or_create
method within a admin.py file, that was executed whenever the software ran any kind of operation (in this case the migration). Hope that helps someone.