Added Supervision attest. field

This commit is contained in:
alazo 2018-04-26 08:07:14 +02:00 committed by Claude Paroz
parent 5fc33f9b44
commit 067a68a549
3 changed files with 19 additions and 1 deletions

View file

@ -0,0 +1,16 @@
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
('stages', '0014_added_supervisionbill_model'),
]
operations = [
migrations.AddField(
model_name='student',
name='supervision_attest_received',
field=models.BooleanField(default=False, verbose_name='Attest. supervision reçue'),
),
]