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): ...@@ -145,8 +145,8 @@ class PersonIdentity(BaseModel):
PASSPORT = "PASSPORT" PASSPORT = "PASSPORT"
DRIVERS_LICENSE = "DRIVERS_LICENSE" DRIVERS_LICENSE = "DRIVERS_LICENSE"
NATIONAL_ID_CARD = "NATIONAL_ID_CARD" NATIONAL_ID_CARD = "NATIONAL_ID_CARD"
# Norwegian foedselsnummer # In Norway this is the foedselsnummer
FOEDSELSNUMMER = "FOEDSELSNUMMER" NATIONAL_ID_NUMBER = "NATIONAL_ID_NUMBER"
# Sponsor writes what is used in the value column # Sponsor writes what is used in the value column
OTHER = "OTHER" OTHER = "OTHER"
...@@ -157,7 +157,7 @@ class PersonIdentity(BaseModel): ...@@ -157,7 +157,7 @@ class PersonIdentity(BaseModel):
person = models.ForeignKey( person = models.ForeignKey(
"Person", on_delete=models.CASCADE, related_name="person" "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) source = models.CharField(max_length=256)
value = models.CharField(max_length=256) value = models.CharField(max_length=256)
verified = models.CharField(max_length=9, choices=Verified.choices, blank=True) 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