2016-07-09 19:42:45 +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', '0002_enable_unprocessed_demandes'),
|
2016-07-09 19:42:45 +02:00
|
|
|
]
|
|
|
|
|
|
|
|
operations = [
|
|
|
|
migrations.AddField(
|
|
|
|
model_name='event',
|
|
|
|
name='image',
|
|
|
|
field=models.ImageField(upload_to=b'imgs/events/', null=True, verbose_name=b'Image', blank=True),
|
|
|
|
),
|
|
|
|
]
|