Set Candidate.deposite_date non nullable
This commit is contained in:
parent
76f9e49e2d
commit
7574f74386
2 changed files with 17 additions and 1 deletions
16
candidats/migrations/0002_deposit_date_non_null.py
Normal file
16
candidats/migrations/0002_deposit_date_non_null.py
Normal 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'),
|
||||
),
|
||||
]
|
||||
Loading…
Add table
Add a link
Reference in a new issue