migration
This commit is contained in:
parent
8b4c99cd72
commit
9e40e7f855
1 changed files with 23 additions and 0 deletions
23
settings/migrations/0003_auto_20180301_1109.py
Normal file
23
settings/migrations/0003_auto_20180301_1109.py
Normal file
|
@ -0,0 +1,23 @@
|
||||||
|
# Generated by Django 2.0.1 on 2018-03-01 11:09
|
||||||
|
|
||||||
|
from django.db import migrations, models
|
||||||
|
|
||||||
|
|
||||||
|
class Migration(migrations.Migration):
|
||||||
|
|
||||||
|
dependencies = [
|
||||||
|
('settings', '0002_auto_20180301_1047'),
|
||||||
|
]
|
||||||
|
|
||||||
|
operations = [
|
||||||
|
migrations.AlterField(
|
||||||
|
model_name='sitesettings',
|
||||||
|
name='event_poster',
|
||||||
|
field=models.ImageField(blank=True, null=True, upload_to='', verbose_name="Affiche de l'événement"),
|
||||||
|
),
|
||||||
|
migrations.AlterField(
|
||||||
|
model_name='sitesettings',
|
||||||
|
name='site_logo',
|
||||||
|
field=models.ImageField(blank=True, null=True, upload_to='', verbose_name='Logo du site'),
|
||||||
|
),
|
||||||
|
]
|
Loading…
Reference in a new issue