26 lines
666 B
Python
26 lines
666 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'),
|
||
|
),
|
||
|
]
|