Added Supervision attest. field
This commit is contained in:
parent
5fc33f9b44
commit
067a68a549
3 changed files with 19 additions and 1 deletions
16
stages/migrations/0015_added_supervision_attest_field.py
Normal file
16
stages/migrations/0015_added_supervision_attest_field.py
Normal 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'),
|
||||
),
|
||||
]
|
||||
Loading…
Add table
Add a link
Reference in a new issue