69b0b13ad3
- PEP8 - Fichiers inutilisés
27 lines
740 B
Python
27 lines
740 B
Python
# -*- coding: utf-8 -*-
|
|
from __future__ import unicode_literals
|
|
|
|
from django.db import models, migrations
|
|
from django.conf import settings
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('gestion', '0001_initial'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AlterField(
|
|
model_name='ernestouser',
|
|
name='phone',
|
|
field=models.CharField(max_length=20, blank=True,
|
|
verbose_name='Téléphone'),
|
|
),
|
|
migrations.AlterField(
|
|
model_name='ernestouser',
|
|
name='user',
|
|
field=models.OneToOneField(to=settings.AUTH_USER_MODEL,
|
|
related_name='profile'),
|
|
),
|
|
]
|