adding some basic copy tag and serial tables to the mig init function
[migration-tools.git] / remove_ou_data / 12_remove_more_patron_extras.sql
index a9a2dc2..b3a64de 100644 (file)
@@ -25,5 +25,7 @@ DELETE FROM action.non_cataloged_circulation WHERE patron 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));
 DELETE FROM action.non_cataloged_circulation WHERE staff 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));
+DELETE FROM action.usr_circ_history WHERE usr 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));
 
 COMMIT;