Add CorpContact.avs field
This commit is contained in:
parent
95a30d6731
commit
94ec402da0
3 changed files with 19 additions and 1 deletions
17
stages/migrations/0030_add_contact_avs.py
Normal file
17
stages/migrations/0030_add_contact_avs.py
Normal file
|
|
@ -0,0 +1,17 @@
|
|||
from django.db import migrations, models
|
||||
import django.db.models.deletion
|
||||
|
||||
|
||||
class Migration(migrations.Migration):
|
||||
|
||||
dependencies = [
|
||||
('stages', '0029_delete_exam_fields_on_student'),
|
||||
]
|
||||
|
||||
operations = [
|
||||
migrations.AddField(
|
||||
model_name='corpcontact',
|
||||
name='avs',
|
||||
field=models.CharField(blank=True, max_length=20, verbose_name='No AVS'),
|
||||
),
|
||||
]
|
||||
Loading…
Add table
Add a link
Reference in a new issue