Remove unused last_appointment field
This commit is contained in:
parent
ad3b9bd936
commit
123e7f4193
2 changed files with 20 additions and 1 deletions
20
stages/migrations/0028_remove_last_appointment.py
Normal file
20
stages/migrations/0028_remove_last_appointment.py
Normal file
|
|
@ -0,0 +1,20 @@
|
|||
from django.db import migrations, models
|
||||
|
||||
|
||||
class Migration(migrations.Migration):
|
||||
|
||||
dependencies = [
|
||||
('stages', '0027_migrate_exams'),
|
||||
]
|
||||
|
||||
operations = [
|
||||
migrations.RemoveField(
|
||||
model_name='student',
|
||||
name='last_appointment',
|
||||
),
|
||||
migrations.AlterField(
|
||||
model_name='examination',
|
||||
name='type_exam',
|
||||
field=models.CharField(choices=[('exam', 'Examen qualification'), ('entr', 'Entretien professionnel')], max_length=10, verbose_name='Type'),
|
||||
),
|
||||
]
|
||||
Loading…
Add table
Add a link
Reference in a new issue