From b51b4189217394ca1e9c2732a71385853462e567 Mon Sep 17 00:00:00 2001 From: Mike Rylander Date: Thu, 17 Feb 2011 14:18:58 -0500 Subject: [PATCH] set up proper pg table names --- .../perlmods/lib/OpenILS/Application/Storage/Driver/Pg/dbi.pm | 11 +++++++++++ 1 file changed, 11 insertions(+) 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; -- 2.11.0