[open-ils-commits] r13590 - trunk/Open-ILS/src/sql/Pg (scottmk)

svn at svn.open-ils.org svn at svn.open-ils.org
Tue Jul 14 14:42:34 EDT 2009


Author: scottmk
Date: 2009-07-14 14:42:30 -0400 (Tue, 14 Jul 2009)
New Revision: 13590

Modified:
   trunk/Open-ILS/src/sql/Pg/999.functions.global.sql
Log:
Correcting some careless typos...


Modified: trunk/Open-ILS/src/sql/Pg/999.functions.global.sql
===================================================================
--- trunk/Open-ILS/src/sql/Pg/999.functions.global.sql	2009-07-14 18:22:34 UTC (rev 13589)
+++ trunk/Open-ILS/src/sql/Pg/999.functions.global.sql	2009-07-14 18:42:30 UTC (rev 13590)
@@ -459,14 +459,14 @@
 	UPDATE asset.copy_note SET creator = dest_usr WHERE creator = src_usr;
 
 	-- auditor.*
-	DELETE FROM auditor.usr_address_history WHERE id = src_usr;
-	DELETE FROM auditor.usr_history WHERE id = src_usr;
+	DELETE FROM auditor.actor_usr_address_history WHERE id = src_usr;
+	DELETE FROM auditor.actor_usr_history WHERE id = src_usr;
 	UPDATE auditor.asset_call_number_history SET creator = dest_usr WHERE creator = src_usr;
 	UPDATE auditor.asset_call_number_history SET editor  = dest_usr WHERE editor  = src_usr;
 	UPDATE auditor.asset_copy_history SET creator = dest_usr WHERE creator = src_usr;
 	UPDATE auditor.asset_copy_history SET editor  = dest_usr WHERE editor  = src_usr;
-	UPDATE auditor.asset_biblio_record_entry_history SET creator = dest_usr WHERE creator = src_usr;
-	UPDATE auditor.asset_biblio_record_entry_history SET editor  = dest_usr WHERE editor  = src_usr;
+	UPDATE auditor.biblio_record_entry_history SET creator = dest_usr WHERE creator = src_usr;
+	UPDATE auditor.biblio_record_entry_history SET editor  = dest_usr WHERE editor  = src_usr;
 
 	-- biblio.*
 	UPDATE biblio.record_entry SET creator = dest_usr WHERE creator = src_usr;



More information about the open-ils-commits mailing list