遇到“OperationalError: no such table: auth_user”错误的可能原因是什么

问题描述 投票:0回答:1

运行 Django 应用程序时遇到“OperationalError: no such table: auth_user”错误的可能原因是什么?如何解决?

我正在尝试解决该错误,但我无法在互联网上找到与此错误相关的解决方案,如果您优化了并且最好的解决方案请给我正确的答案?

运行 Django 应用程序时出现“OperationalError: no such table: auth_user”,如何解决?

python django orm saas
1个回答
0
投票

auth_user
是一个需要Django自动创建的表。但这个过程只有在你运行时才会触发:

python manage.py migrate

另外,请确保您创建一个超级用户:

python manage.py createsuperuser
© www.soinside.com 2019 - 2024. All rights reserved.