22 lines
564 B
Python
22 lines
564 B
Python
# Generated by Django 2.0.5 on 2018-05-22 08:09
|
|
|
|
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
("manuels", "0005_suppliesrequirement"),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AlterField(
|
|
model_name="book",
|
|
name="previously_acquired",
|
|
field=models.BooleanField(
|
|
choices=[(True, "Oui"), (False, "Non")],
|
|
default=False,
|
|
verbose_name="manuel acquis précédemment par l'élève",
|
|
),
|
|
),
|
|
]
|