0010_auto_20170514_1539.py 997 B

123456789101112131415161718192021222324252627282930313233343536
  1. # -*- coding: utf-8 -*-
  2. # Generated by Django 1.11 on 2017-05-14 13:39
  3. from __future__ import unicode_literals
  4. import django.contrib.auth.models
  5. from django.db import migrations
  6. class Migration(migrations.Migration):
  7. dependencies = [
  8. ('auth', '0008_alter_user_username_max_length'),
  9. ('adhesions', '0009_auto_20170507_0228'),
  10. ]
  11. operations = [
  12. migrations.CreateModel(
  13. name='ProxyUser',
  14. fields=[
  15. ],
  16. options={
  17. 'verbose_name': 'personne physique',
  18. 'verbose_name_plural': 'personnes physiques',
  19. 'proxy': True,
  20. 'indexes': [],
  21. },
  22. bases=('auth.user',),
  23. managers=[
  24. ('objects', django.contrib.auth.models.UserManager()),
  25. ],
  26. ),
  27. migrations.AlterModelOptions(
  28. name='adhesion',
  29. options={'ordering': ('id',), 'verbose_name': 'adhésion'},
  30. ),
  31. ]