Fix Candidat residence_permits definition
This commit is contained in:
parent
e3f6c82301
commit
069b7302bf
3 changed files with 67 additions and 1 deletions
18
candidats/migrations/0006_residence_permits_nullable.py
Normal file
18
candidats/migrations/0006_residence_permits_nullable.py
Normal file
|
|
@ -0,0 +1,18 @@
|
|||
# Generated by Django 2.0.1 on 2018-02-01 13:53
|
||||
|
||||
from django.db import migrations, models
|
||||
|
||||
|
||||
class Migration(migrations.Migration):
|
||||
|
||||
dependencies = [
|
||||
('candidats', '0005_rename_candidat_field'),
|
||||
]
|
||||
|
||||
operations = [
|
||||
migrations.AlterField(
|
||||
model_name='candidate',
|
||||
name='residence_permits',
|
||||
field=models.PositiveSmallIntegerField(blank=True, choices=[(0, 'Pas nécessaire'), (1, 'Nécessaire - OK'), (2, 'Manquante')], default=0, null=True, verbose_name='Autor. de séjour (pour les pers. étrang.)'),
|
||||
),
|
||||
]
|
||||
Loading…
Add table
Add a link
Reference in a new issue