Set Candidate.deposite_date non nullable

This commit is contained in:
Claude Paroz 2018-01-12 14:28:02 +01:00
parent 76f9e49e2d
commit 7574f74386
2 changed files with 17 additions and 1 deletions

View file

@ -0,0 +1,16 @@
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
('candidats', '0001_initial'),
]
operations = [
migrations.AlterField(
model_name='candidate',
name='deposite_date',
field=models.DateField(verbose_name='Date dépôt dossier'),
),
]