2016-06-17 13:29:26 +02:00
|
|
|
# -*- coding: utf-8 -*-
|
|
|
|
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", "0001_initial")]
|
2016-06-17 13:29:26 +02:00
|
|
|
|
|
|
|
operations = [
|
|
|
|
migrations.AlterField(
|
2018-10-06 12:35:49 +02:00
|
|
|
model_name="petitcoursdemande",
|
|
|
|
name="processed",
|
|
|
|
field=models.DateTimeField(
|
|
|
|
null=True, verbose_name="Date de traitement", blank=True
|
|
|
|
),
|
|
|
|
)
|
2016-06-17 13:29:26 +02:00
|
|
|
]
|