📌  相关文章
📜  如何删除 django 超级用户 - Python 代码示例

📅  最后修改于: 2022-03-11 14:45:40.843000             🧑  作者: Mango

代码示例1
> python manage.py shell
$ from django.contrib.auth.models import User
$ User.objects.get(username="joebloggs", is_superuser=True).delete()