Skip to content

Commit

Permalink
fikser migrering av saksbehandlingshistorikk (V200) som tar høyde for…
Browse files Browse the repository at this point in the history
… at historikk kan være tom liste

De som allerede er migrert, vil ikke bli rørt
  • Loading branch information
RamziAbuQassim committed Mar 5, 2024
1 parent 085a013 commit 102b708
Showing 1 changed file with 8 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,15 @@ SET saksbehandling = jsonb_set(
'tidspunkt', obj ->> 'tidspunkt',
'handlingJson', jsonb_build_object(
'handling', obj ->> 'handling',
'id', null
'tilhørendeSøknadsbehandlingId', null
)
)
)
FROM jsonb_array_elements(saksbehandling -> 'historikk') WITH ORDINALITY AS arr(obj, idx))
)
)
WHERE jsonb_array_length(saksbehandling->'historikk') > 0
AND NOT EXISTS (
SELECT 1
FROM jsonb_array_elements(saksbehandling->'historikk') AS element
WHERE element ? 'handlingJson'
);

0 comments on commit 102b708

Please sign in to comment.