Add CorpContact.archived field
This commit is contained in:
parent
73e3680da0
commit
7d45cd0047
4 changed files with 25 additions and 5 deletions
17
stages/migrations/0007_corpcontact_archived.py
Normal file
17
stages/migrations/0007_corpcontact_archived.py
Normal file
|
|
@ -0,0 +1,17 @@
|
|||
# Generated by Django 1.9.1 on 2016-01-18 12:37
|
||||
from django.db import migrations, models
|
||||
|
||||
|
||||
class Migration(migrations.Migration):
|
||||
|
||||
dependencies = [
|
||||
('stages', '0006_corporation_parent'),
|
||||
]
|
||||
|
||||
operations = [
|
||||
migrations.AddField(
|
||||
model_name='corpcontact',
|
||||
name='archived',
|
||||
field=models.BooleanField(default=False, verbose_name='Archivé'),
|
||||
),
|
||||
]
|
||||
Loading…
Add table
Add a link
Reference in a new issue