From cbf98af9e9d79cee9f8c99267c3e39326487167e Mon Sep 17 00:00:00 2001 From: Rogan Hamby Date: Thu, 9 Feb 2017 11:36:13 -0500 Subject: [PATCH] removed unncessary schema declared on column and fixed issue where value needed was ID and org shortname was given --- remove_ou_data/15_clear_auditors.sql | 4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-) diff --git a/remove_ou_data/15_clear_auditors.sql b/remove_ou_data/15_clear_auditors.sql index 20864e2..685d1cb 100644 --- a/remove_ou_data/15_clear_auditors.sql +++ b/remove_ou_data/15_clear_auditors.sql @@ -38,8 +38,8 @@ DELETE FROM auditor.asset_call_number_history WHERE owning_lib IN ( WHERE shortname = :ou_to_del ); DELETE FROM auditor.actor_usr_address_history WHERE usr IN ( - SELECT au.id + SELECT id FROM actor.usr - WHERE home_ou = :ou_to_del + WHERE home_ou = (SELECT id FROM actor.org_unit WHERE shortname = :ou_to_del) ); COMMIT; -- 1.7.2.5