Nelze vybrat více než 25 témat Téma musí začínat písmenem nebo číslem, může obsahovat pomlčky („-“) a může být dlouhé až 35 znaků.

0001_initial.py 602 B

123456789101112131415161718192021222324252627
  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. ]