forked from DGNum/gestioCOF
20 lines
455 B
Python
20 lines
455 B
Python
|
# -*- coding: utf-8 -*-
|
||
|
from __future__ import unicode_literals
|
||
|
|
||
|
from django.db import migrations, models
|
||
|
|
||
|
|
||
|
class Migration(migrations.Migration):
|
||
|
|
||
|
dependencies = [
|
||
|
('gestioncof', '0001_initial'),
|
||
|
]
|
||
|
|
||
|
operations = [
|
||
|
migrations.AlterField(
|
||
|
model_name='petitcoursdemande',
|
||
|
name='processed',
|
||
|
field=models.DateTimeField(null=True, verbose_name='Date de traitement', blank=True),
|
||
|
),
|
||
|
]
|