1
0
Fork 0
mirror of https://github.com/retspen/webvirtcloud synced 2025-01-12 08:25:18 +00:00

Fixed default account

This commit is contained in:
Retspen 2015-05-07 17:00:11 +03:00
parent d1cf4a0ffb
commit 981eb65fac

View file

@ -5,10 +5,12 @@ from django.db import migrations
def add_useradmin(apps, schema_editor):
# from django.contrib.auth.models import User
# Broken in Django 1.8
# User.objects.create_superuser("admin", None, "admin")
pass
from django.utils import timezone
from django.contrib.auth.models import User
User.objects.create_superuser('admin', None, 'admin',
last_login=timezone.now()
)
class Migration(migrations.Migration):