2018-09-02 23:25:58 +02:00
|
|
|
# -*- coding: utf-8 -*-
|
|
|
|
# Generated by Django 1.11.15 on 2018-09-02 21:13
|
|
|
|
from __future__ import unicode_literals
|
|
|
|
|
|
|
|
from django.db import migrations, models
|
|
|
|
|
|
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
|
2018-10-06 12:35:49 +02:00
|
|
|
dependencies = [("gestioncof", "0013_pei")]
|
2018-09-02 23:25:58 +02:00
|
|
|
|
|
|
|
operations = [
|
|
|
|
migrations.AddField(
|
2018-10-06 12:35:49 +02:00
|
|
|
model_name="cofprofile",
|
|
|
|
name="mailing_unernestaparis",
|
|
|
|
field=models.BooleanField(
|
|
|
|
default=False, verbose_name="Recevoir les mails unErnestAParis"
|
|
|
|
),
|
|
|
|
)
|
2018-09-02 23:25:58 +02:00
|
|
|
]
|