21 lines
476 B
Python
21 lines
476 B
Python
|
# -*- coding: utf-8 -*-
|
||
|
from __future__ import unicode_literals
|
||
|
|
||
|
from django.db import models, migrations
|
||
|
|
||
|
|
||
|
class Migration(migrations.Migration):
|
||
|
|
||
|
dependencies = [
|
||
|
('gestion', '0003_auto_20151014_1904'),
|
||
|
]
|
||
|
|
||
|
operations = [
|
||
|
migrations.AddField(
|
||
|
model_name='ernestouser',
|
||
|
name='mails',
|
||
|
field=models.BooleanField(default=True, verbose_name='Recevoir les mails'),
|
||
|
preserve_default=True,
|
||
|
),
|
||
|
]
|