From 7331ec680f6f2f9bd510cafeb6786f68e78adc9e Mon Sep 17 00:00:00 2001 From: Rogan Hamby Date: Fri, 9 Feb 2018 10:09:03 -0500 Subject: [PATCH] clean up reporter share withs in remove ou scripts --- remove_ou_data/10_clear_vandelay_reports.sql | 6 ++++++ 1 files changed, 6 insertions(+), 0 deletions(-) diff --git a/remove_ou_data/10_clear_vandelay_reports.sql b/remove_ou_data/10_clear_vandelay_reports.sql index b68bef9..2a44d2e 100644 --- a/remove_ou_data/10_clear_vandelay_reports.sql +++ b/remove_ou_data/10_clear_vandelay_reports.sql @@ -55,4 +55,10 @@ DELETE FROM reporter.template WHERE owner IN DELETE FROM reporter.template_folder WHERE owner IN (SELECT id FROM actor.usr WHERE home_ou IN (SELECT (actor.org_unit_descendants(id)).id from actor.org_unit where shortname = :ou_to_del)); +UPDATE reporter.report_folder SET share_with = NULL WHERE share_with IN +(SELECT (actor.org_unit_descendants(id)).id from actor.org_unit where shortname = :ou_to_del); + +UPDATE reporter.template_folder SET share_with = NULL WHERE share_with IN +(SELECT (actor.org_unit_descendants(id)).id from actor.org_unit where shortname = :ou_to_del); + COMMIT; -- 1.7.2.5