Skip to content
Snippets Groups Projects
Commit 880add33 authored by Tore.Brede's avatar Tore.Brede
Browse files

GREG-21: Changing foedselsnummer to national ID number

parent e4ae7b3b
No related branches found
No related tags found
1 merge request!25GREG-21: Add foedselsnummer as type
......@@ -145,8 +145,8 @@ class PersonIdentity(BaseModel):
PASSPORT = "PASSPORT"
DRIVERS_LICENSE = "DRIVERS_LICENSE"
NATIONAL_ID_CARD = "NATIONAL_ID_CARD"
# Norwegian foedselsnummer
FOEDSELSNUMMER = "FOEDSELSNUMMER"
# In Norway this is the foedselsnummer
NATIONAL_ID_NUMBER = "NATIONAL_ID_NUMBER"
# Sponsor writes what is used in the value column
OTHER = "OTHER"
......@@ -157,7 +157,7 @@ class PersonIdentity(BaseModel):
person = models.ForeignKey(
"Person", on_delete=models.CASCADE, related_name="person"
)
type = models.CharField(max_length=16, choices=IdentityType.choices)
type = models.CharField(max_length=18, choices=IdentityType.choices)
source = models.CharField(max_length=256)
value = models.CharField(max_length=256)
verified = models.CharField(max_length=9, choices=Verified.choices, 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