####CREATE SUPERUSER ON DJANGO
from django.contrib.auth.models import User
user = User.objects.create_superuser('john', '[email protected]', 'johnpassword')
user.save()
####CREATE SUPERUSER ON DJANGO
from django.contrib.auth.models import User
user = User.objects.create_superuser('john', '[email protected]', 'johnpassword')
user.save()