Fix migration
Erreur dans la numérotation
This commit is contained in:
parent
a7b45793ca
commit
be3a97d128
1 changed files with 4 additions and 2 deletions
|
@ -1,7 +1,8 @@
|
||||||
# -*- coding: utf-8 -*-
|
# -*- coding: utf-8 -*-
|
||||||
from __future__ import unicode_literals
|
from __future__ import unicode_literals
|
||||||
|
|
||||||
from django.db import migrations, models
|
from django.db import migrations
|
||||||
|
|
||||||
|
|
||||||
def create_mail(apps, schema_editor):
|
def create_mail(apps, schema_editor):
|
||||||
CustomMail = apps.get_model("gestioncof", "CustomMail")
|
CustomMail = apps.get_model("gestioncof", "CustomMail")
|
||||||
|
@ -19,10 +20,11 @@ def create_mail(apps, schema_editor):
|
||||||
+ "{{ prenom }} \t prénom de la personne.")
|
+ "{{ prenom }} \t prénom de la personne.")
|
||||||
])
|
])
|
||||||
|
|
||||||
|
|
||||||
class Migration(migrations.Migration):
|
class Migration(migrations.Migration):
|
||||||
|
|
||||||
dependencies = [
|
dependencies = [
|
||||||
('gestioncof', '0002_enable_unprocessed_demandes'),
|
('gestioncof', '0003_event_image.py'),
|
||||||
]
|
]
|
||||||
|
|
||||||
operations = [
|
operations = [
|
||||||
|
|
Loading…
Reference in a new issue