manuels-scolaires/manuels/migrations/0023_auto_20180604_1827.py

24 lines
522 B
Python
Raw Normal View History

2018-06-04 18:28:40 +02:00
# Generated by Django 2.0.5 on 2018-06-04 16:27
from django.db import migrations, models
2021-07-10 12:11:58 +02:00
2018-06-04 18:28:40 +02:00
import manuels.models
class Migration(migrations.Migration):
dependencies = [
2021-07-10 12:11:58 +02:00
("manuels", "0022_teacher_has_confirmed_list"),
2018-06-04 18:28:40 +02:00
]
operations = [
migrations.AlterField(
2021-07-10 12:11:58 +02:00
model_name="book",
name="price",
field=models.FloatField(
validators=[manuels.models.positive_float_validator],
verbose_name="prix",
),
2018-06-04 18:28:40 +02:00
),
]