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):
|
|
|
|
|
|
|
|
dependencies = [
|
2017-02-09 21:04:32 +01:00
|
|
|
('cof', '0001_initial'),
|
2016-06-17 13:29:26 +02:00
|
|
|
]
|
|
|
|
|
|
|
|
operations = [
|
|
|
|
migrations.AlterField(
|
|
|
|
model_name='petitcoursdemande',
|
|
|
|
name='processed',
|
|
|
|
field=models.DateTimeField(null=True, verbose_name='Date de traitement', blank=True),
|
|
|
|
),
|
|
|
|
]
|