2016-06-21 00:33:32 +02:00
|
|
|
# -*- 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',
|
2016-07-14 01:58:52 +02:00
|
|
|
field=models.BooleanField(default=True,
|
|
|
|
verbose_name='Recevoir les mails'),
|
2016-06-21 00:33:32 +02:00
|
|
|
preserve_default=True,
|
|
|
|
),
|
|
|
|
]
|