Skip to content
Snippets Groups Projects
Commit ca537041 authored by Piotr Gawron's avatar Piotr Gawron
Browse files

typo

parent 2f0b8621
No related branches found
No related tags found
1 merge request!250Virus visit column changes
......@@ -27,4 +27,9 @@ class Migration(migrations.Migration):
name='next_of_keen_phone',
field=models.BooleanField(default=False, max_length=1, verbose_name=b'Next of kin phone'),
),
migrations.AlterField(
model_name='subject',
name='social_security_number',
field=models.CharField(blank=True, max_length=50, verbose_name=b'Social security number'),
),
]
......@@ -34,7 +34,7 @@ class Subject(models.Model):
)
social_security_number = models.CharField(max_length=50,
verbose_name='Social security_number',
verbose_name='Social security number',
blank=True,
)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment