Add Student.start_educ
This commit is contained in:
parent
2d9c36b693
commit
5f1b7229f2
4 changed files with 20 additions and 2 deletions
16
stages/migrations/0037_student_start_educ.py
Normal file
16
stages/migrations/0037_student_start_educ.py
Normal file
|
|
@ -0,0 +1,16 @@
|
|||
from django.db import migrations, models
|
||||
|
||||
|
||||
class Migration(migrations.Migration):
|
||||
|
||||
dependencies = [
|
||||
('stages', '0036_corpcontact_etat_civil'),
|
||||
]
|
||||
|
||||
operations = [
|
||||
migrations.AddField(
|
||||
model_name='student',
|
||||
name='start_educ',
|
||||
field=models.DateField(blank=True, null=True, verbose_name='Entrée en formation'),
|
||||
),
|
||||
]
|
||||
Loading…
Add table
Add a link
Reference in a new issue