📌  相关文章
📜  django 从脚本创建超级用户 - Python 代码示例

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

代码示例3
from django.core.management.base import BaseCommand, CommandError
from django.contrib.auth.models import User

class Command(BaseCommand):

    def handle(self, *args, **options):

        # The magic line
        User.objects.create_user(username= 'rmx',
                                email='superuser@super.com',
                                password='rmx55',
                                is_staff=True,
                                is_active=True,
                                is_superuser=True
        )