Skip to content
Snippets Groups Projects
Verified Commit 6e0b23dc authored by Andreas Ellewsen's avatar Andreas Ellewsen
Browse files

Change unique constraint on OuIdentifiers

OuIdentifiers used to be restricted to the name+value combination to
make sure that no two units could have the same legacy_stedkode. This
becomes problematic when two units have the same short_name.

This makes it possible for two units to have the same value for the same
OuIdentifier name, and adds a constraint that makes it impossible for
each unit to have more than one OuIdentifier with the same 'name', i.e
multiple legacy_stedkode for one unit.
parent f7135da4
No related branches found
No related tags found
1 merge request!361Fix orgreg import not seeing duplicates
Pipeline #169048 passed
"""
This migrations was made necessary due to OrgReg using the same short
name for multiple OrganizationUnits.
The restriction existed to prevent multiple units having the same
legacy_stedkode. This should never be the case but this value is not
used for anything other than clarity when choosing an OrganizationUnit
from a dropdown in the frontend and should thus be safe.
"""
# Generated by Django 4.1.3 on 2022-11-29 11:44
from django.db import migrations, models
def cleanup_duplicates(apps, schema_editor):
"""
Keep most recently updated value for each name on each ou
"""
OuIdentifier = apps.get_model("greg", "OuIdentifier")
previous = None
for oui in OuIdentifier.objects.order_by("name", "orgunit", "updated"):
if (
previous
and oui.name == previous.name
and oui.orgunit.id == previous.orgunit.id
):
previous.delete()
previous = oui
return
class Migration(migrations.Migration):
dependencies = [
("greg", "0025_alter_ouidentifier_source"),
]
operations = [
migrations.RunPython(cleanup_duplicates),
migrations.RemoveConstraint(
model_name="ouidentifier",
name="unique_identifier",
),
migrations.AddConstraint(
model_name="ouidentifier",
constraint=models.UniqueConstraint(
fields=("name", "orgunit"), name="unique_identifier"
),
),
]
...@@ -467,7 +467,9 @@ class OuIdentifier(BaseModel): ...@@ -467,7 +467,9 @@ class OuIdentifier(BaseModel):
class Meta: class Meta:
constraints = [ constraints = [
models.UniqueConstraint(name="unique_identifier", fields=["name", "value"]) models.UniqueConstraint(
name="unique_identifier", fields=["name", "orgunit"]
)
] ]
def __str__(self) -> str: def __str__(self) -> str:
......
import re import re
import typing import typing
from datetime import date, datetime, timedelta from datetime import date, datetime, timedelta, timezone as dt_timezone
from rest_framework import serializers from rest_framework import serializers
from django.db import transaction from django.db import transaction
from django.conf import settings from django.conf import settings
...@@ -149,7 +150,7 @@ def _compute_checksum(input_digits: str) -> bool: ...@@ -149,7 +150,7 @@ def _compute_checksum(input_digits: str) -> bool:
def date_to_datetime_midnight(in_date: date) -> datetime: def date_to_datetime_midnight(in_date: date) -> datetime:
"""Convert a date object to a datetime object with timezone utc""" """Convert a date object to a datetime object with timezone utc"""
return datetime.combine(in_date, datetime.min.time(), tzinfo=timezone.utc) return datetime.combine(in_date, datetime.min.time(), tzinfo=dt_timezone.utc)
def str2date(in_date: typing.Union[str, date]): def str2date(in_date: typing.Union[str, date]):
......
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