Add CorpContact.nation for nationality
This commit is contained in:
parent
f2882f29cf
commit
16ca90f6eb
4 changed files with 19 additions and 3 deletions
16
stages/migrations/0032_contact_nationalite.py
Normal file
16
stages/migrations/0032_contact_nationalite.py
Normal file
|
|
@ -0,0 +1,16 @@
|
|||
from django.db import migrations, models
|
||||
|
||||
|
||||
class Migration(migrations.Migration):
|
||||
|
||||
dependencies = [
|
||||
('stages', '0031_remove_contact_ccp'),
|
||||
]
|
||||
|
||||
operations = [
|
||||
migrations.AddField(
|
||||
model_name='corpcontact',
|
||||
name='nation',
|
||||
field=models.CharField(blank=True, max_length=40, verbose_name='Nationalité'),
|
||||
),
|
||||
]
|
||||
Loading…
Add table
Add a link
Reference in a new issue