From 04f01f8302ae6073c9e50d1e2d1048b83cbd4329 Mon Sep 17 00:00:00 2001 From: Riad Abdallah Date: Thu, 12 Dec 2024 17:42:26 +0100 Subject: [PATCH] Set AGB Stekene's org status to `Niet-Actief` --- .../20241212174128-archive-agb-stekene.sparql | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 config/migrations/2024/20241212174128-archive-agb-stekene.sparql diff --git a/config/migrations/2024/20241212174128-archive-agb-stekene.sparql b/config/migrations/2024/20241212174128-archive-agb-stekene.sparql new file mode 100644 index 00000000..96884b0f --- /dev/null +++ b/config/migrations/2024/20241212174128-archive-agb-stekene.sparql @@ -0,0 +1,15 @@ +DELETE { + GRAPH ?g { + ?orgStatus . + } +} +INSERT { + GRAPH ?g { + . # "Niet-Actief" Status + } +} +WHERE { + GRAPH ?g { + ?orgStatus . + } +}