334c1d2f00
Ajoute des changements effectués en prod sans passer par le git
20 lines
476 B
Python
20 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,
|
|
),
|
|
]
|