Fix migrations

This commit is contained in:
Iacopo Spalletti 2016-05-29 02:36:52 +02:00
commit ea9970d250
No known key found for this signature in database
GPG key ID: BDCBC2EB289F60C6
24 changed files with 275 additions and 130 deletions

View file

@ -10,8 +10,8 @@ import django.contrib.auth.models
class Migration(migrations.Migration):
dependencies = [
('auth', '0006_require_contenttypes_0002'),
('sites', '0001_initial'),
('auth', '__first__'),
('sites', '__first__'),
]
operations = [
@ -38,8 +38,6 @@ class Migration(migrations.Migration):
'abstract': False,
'verbose_name_plural': 'users',
},
managers=[
('objects', django.contrib.auth.models.UserManager()),
],
bases=(models.Model,),
),
]