From: Rogan Hamby Date: Fri, 9 Feb 2018 15:09:03 +0000 (-0500) Subject: clean up reporter share withs in remove ou scripts X-Git-Url: http://git.equinoxoli.org/?p=migration-tools.git;a=commitdiff_plain;h=7331ec680f6f2f9bd510cafeb6786f68e78adc9e;hp=234d6c986f42cb7c245205bb299fa2c9d204e52a clean up reporter share withs in remove ou scripts --- 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;