Skip to content

Instantly share code, notes, and snippets.

@artieziff
Last active December 17, 2015 03:09
Show Gist options
  • Save artieziff/5541083 to your computer and use it in GitHub Desktop.
Save artieziff/5541083 to your computer and use it in GitHub Desktop.

####CREATE SUPERUSER ON DJANGO from django.contrib.auth.models import User

user = User.objects.create_superuser('john', 'lennon@thebeatles.com', 'johnpassword')

user.save()

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment