Add forgotten migration
This commit is contained in:
parent
c6c7c3af31
commit
2c20e58e1d
1 changed files with 16 additions and 0 deletions
16
stages/migrations/0021_teacher_can_examinate.py
Normal file
16
stages/migrations/0021_teacher_can_examinate.py
Normal file
|
|
@ -0,0 +1,16 @@
|
|||
from django.db import migrations, models
|
||||
|
||||
|
||||
class Migration(migrations.Migration):
|
||||
|
||||
dependencies = [
|
||||
('stages', '0020_teacher_to_user_link'),
|
||||
]
|
||||
|
||||
operations = [
|
||||
migrations.AddField(
|
||||
model_name='teacher',
|
||||
name='can_examinate',
|
||||
field=models.BooleanField(default=False, verbose_name='Peut corriger examens candidats'),
|
||||
),
|
||||
]
|
||||
Loading…
Add table
Add a link
Reference in a new issue