return Database.Cursor.execute(self, query, params) django.db.utils.OperationalError: no such table: theblog_categories
i expected to migrate succesfully
return Database.Cursor.execute(self, query, params) django.db.utils.OperationalError: no such table: theblog_categories
i expected to migrate succesfully
This is because the migrations in Django are little complex and often with little changes it doesn't reflect the changes in the DB.
Please delete Migrations file from the Django app and then migrate it again. You can also refer this link if the problem persist: Django migrate --fake and --fake-initial explained
If the problem still persist please reply to this comment.