Created
March 13, 2015 12:18
-
-
Save inirudebwoy/7eb2d74ea950c38559e5 to your computer and use it in GitHub Desktop.
Django 1.7+ migration for creating superuser
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# -*- coding: utf-8 -*- | |
from __future__ import unicode_literals | |
from django.db import migrations | |
from django.contrib.auth.admin import User | |
def create_superuser(apps, schema_editor): | |
superuser = User() | |
superuser.is_active = True | |
superuser.is_superuser = True | |
superuser.is_staff = True | |
superuser.username = 'admin' | |
superuser.email = '[email protected]' | |
superuser.set_password('admin') | |
superuser.save() | |
class Migration(migrations.Migration): | |
dependencies = [ | |
] | |
operations = [ | |
migrations.RunPython(create_superuser) | |
] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
@virginia-garcia you need to add the file to your Django
migrations/
folder and runpython manage.py migrate