Django NodeNotFoundError during migration

前端 未结 4 1378
梦毁少年i
梦毁少年i 2021-01-08 01:12

The error I get when I try to runserver for my django app is as follows:

django.db.migrations.graph.NodeNotFoundError: Migra

4条回答
  •  梦毁少年i
    2021-01-08 01:42

    Your error indicates that tasks application has a migration that can't be found.

    That's mean, that you are missing some applications in INSTALLED_APPS - most probably you do not have 'django.contrib.auth' in this list.

提交回复
热议问题