ernestophone.ens.fr/gestion/migrations/0006_auto_20210608_1029.py

25 lines
553 B
Python
Raw Normal View History

2021-06-08 13:31:41 +02:00
# Generated by Django 2.2.17 on 2021-06-08 10:29
from django.db import migrations, models
2022-01-06 13:11:16 +01:00
2021-06-08 13:31:41 +02:00
import gestion.models
class Migration(migrations.Migration):
dependencies = [
2022-01-06 13:11:16 +01:00
("gestion", "0005_auto_20210427_1834"),
2021-06-08 13:31:41 +02:00
]
operations = [
migrations.AlterField(
2022-01-06 13:11:16 +01:00
model_name="photo",
name="image",
field=models.ImageField(
default=None,
upload_to="trombonoscope/deco",
validators=[gestion.models.Photo.validate_image],
),
2021-06-08 13:31:41 +02:00
),
]