Add missing migration
This commit is contained in:
parent
2791b27729
commit
a562f7587a
1 changed files with 18 additions and 0 deletions
18
manuels/migrations/0007_auto_20180522_1026.py
Normal file
18
manuels/migrations/0007_auto_20180522_1026.py
Normal file
|
@ -0,0 +1,18 @@
|
||||||
|
# Generated by Django 2.0.5 on 2018-05-22 08:26
|
||||||
|
|
||||||
|
from django.db import migrations, models
|
||||||
|
|
||||||
|
|
||||||
|
class Migration(migrations.Migration):
|
||||||
|
|
||||||
|
dependencies = [
|
||||||
|
('manuels', '0006_auto_20180522_1009'),
|
||||||
|
]
|
||||||
|
|
||||||
|
operations = [
|
||||||
|
migrations.AlterField(
|
||||||
|
model_name='book',
|
||||||
|
name='previously_acquired',
|
||||||
|
field=models.BooleanField(choices=[(False, 'Non'), (True, 'Oui')], default=False, verbose_name="manuel acquis précédemment par l'élève"),
|
||||||
|
),
|
||||||
|
]
|
Loading…
Reference in a new issue