manuels-scolaires/src/manuels/migrations/0029_auto_20190406_1904.py

24 lines
624 B
Python
Raw Normal View History

2019-04-06 19:25:04 +02:00
# Generated by Django 2.2 on 2019-04-06 17:04
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
2021-07-10 12:11:58 +02:00
("manuels", "0028_auto_20190406_1901"),
2019-04-06 19:25:04 +02:00
]
operations = [
migrations.AlterField(
2021-07-10 12:11:58 +02:00
model_name="book",
name="consumable",
field=models.BooleanField(
choices=[(None, "------------"), (False, "Non"), (True, "Oui")],
default=None,
help_text="Exemple : un cahier d'exercices est un consommable",
verbose_name="consommable",
),
2019-04-06 19:25:04 +02:00
),
]