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

postal code should have 7 characters

parent 0e78640b
No related branches found
No related tags found
No related merge requests found
......@@ -85,7 +85,7 @@ class Subject(models.Model):
address = models.CharField(max_length=255,
verbose_name='Address'
)
postal_code = models.CharField(max_length=6,
postal_code = models.CharField(max_length=7,
verbose_name='Postal code'
)
city = models.CharField(max_length=50,
......
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