Skip to content

Commit

Permalink
fix. sjekke at ikke avtaleId er null i spørring for å rydde opp avtal…
Browse files Browse the repository at this point in the history
…er etter arena migrering
  • Loading branch information
eirikv committed Dec 13, 2024
1 parent 823d429 commit 54d6a7e
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ atd.tiltakdeltakerId NOT IN (SELECT tiltakdeltakerId FROM ArenaAgreementMigratio
FROM Avtale a
WHERE a.tiltakstype = 'ARBEIDSTRENING'
AND a.status = 'GJENNOMFØRES'
AND a.id NOT IN (SELECT avtaleId FROM ArenaAgreementMigration)
AND a.id NOT IN (SELECT aam.avtaleId FROM ArenaAgreementMigration aam WHERE aam.avtaleId IS NOT NULL)
""")
List<Avtale> findAgreementsForCleanUp(Limit limit);

Expand Down

0 comments on commit 54d6a7e

Please sign in to comment.