You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

28 regels
602 B

  1. # -*- coding: utf-8 -*-
  2. from __future__ import unicode_literals
  3. from django.db import models, migrations
  4. import django.contrib.auth.models
  5. class Migration(migrations.Migration):
  6. dependencies = [
  7. ('auth', '0006_require_contenttypes_0002'),
  8. ]
  9. operations = [
  10. migrations.CreateModel(
  11. name='User',
  12. fields=[
  13. ],
  14. options={
  15. 'proxy': True,
  16. },
  17. bases=('auth.user',),
  18. managers=[
  19. ('objects', django.contrib.auth.models.UserManager()),
  20. ],
  21. ),
  22. ]