From: Mike Rylander Date: Thu, 17 Feb 2011 19:18:58 +0000 (-0500) Subject: set up proper pg table names X-Git-Url: https://old-git.evergreen-ils.org/?a=commitdiff_plain;h=b51b4189217394ca1e9c2732a71385853462e567;p=evergreen%2Fequinox.git set up proper pg table names --- diff --git a/Open-ILS/src/perlmods/lib/OpenILS/Application/Storage/Driver/Pg/dbi.pm b/Open-ILS/src/perlmods/lib/OpenILS/Application/Storage/Driver/Pg/dbi.pm index 5ca6fd008b..4041785a01 100644 --- a/Open-ILS/src/perlmods/lib/OpenILS/Application/Storage/Driver/Pg/dbi.pm +++ b/Open-ILS/src/perlmods/lib/OpenILS/Application/Storage/Driver/Pg/dbi.pm @@ -1,5 +1,16 @@ { + #------------------------------------------------------------------------------- + package asset::copy_part_map; + + asset::copy_part_map->table( 'asset.copy_part_map' ); + + #------------------------------------------------------------------------------- + package biblio::monograph_part; + + biblio::monograph_part->table( 'biblio.monograph_part' ); + biblio::monograph_part->sequence( 'biblio.monograph_part_id_seq' ); + #------------------------------------------------------------------------------- package container::user_bucket;