From: Rogan Hamby Date: Thu, 9 Feb 2017 16:36:13 +0000 (-0500) Subject: removed unncessary schema declared on column and fixed issue where value needed was... X-Git-Url: http://git.equinoxoli.org/?p=migration-tools.git;a=commitdiff_plain;h=cbf98af9e9d79cee9f8c99267c3e39326487167e removed unncessary schema declared on column and fixed issue where value needed was ID and org shortname was given --- 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;