From 4092db5a0395d1c842cac5f712d54de4b94f4024 Mon Sep 17 00:00:00 2001 From: miker Date: Fri, 2 Dec 2005 20:55:52 +0000 Subject: [PATCH] arg ... thinko git-svn-id: svn://svn.open-ils.org/ILS/trunk@2169 dcc99617-32d9-48b4-a31d-7c20da2025e4 --- .../Application/Storage/CDBI/container.pm | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/Open-ILS/src/perlmods/OpenILS/Application/Storage/CDBI/container.pm b/Open-ILS/src/perlmods/OpenILS/Application/Storage/CDBI/container.pm index 0611698e22..12cef25b51 100644 --- a/Open-ILS/src/perlmods/OpenILS/Application/Storage/CDBI/container.pm +++ b/Open-ILS/src/perlmods/OpenILS/Application/Storage/CDBI/container.pm @@ -15,8 +15,8 @@ container::user_bucket->columns( All => qw/id owner name/ ); package container::user_bucket_item; use base qw/container/; -container::user_bucket->table( 'container_user_bucket_item' ); -container::user_bucket->columns( All => qw/id bucket target_user/ ); +container::user_bucket_item->table( 'container_user_bucket_item' ); +container::user_bucket_item->columns( All => qw/id bucket target_user/ ); #------------------------------------------------------------------------------- package container::copy_bucket; @@ -29,8 +29,8 @@ container::copy_bucket->columns( All => qw/id owner name/ ); package container::copy_bucket_item; use base qw/container/; -container::copy_bucket->table( 'container_copy_bucket_item' ); -container::copy_bucket->columns( All => qw/id bucket target_copy/ ); +container::copy_bucket_item->table( 'container_copy_bucket_item' ); +container::copy_bucket_item->columns( All => qw/id bucket target_copy/ ); #------------------------------------------------------------------------------- package container::biblio_record_entry_bucket; @@ -43,8 +43,8 @@ container::biblio_record_entry_bucket->columns( All => qw/id owner name/ ); package container::biblio_record_entry_bucket_item; use base qw/container/; -container::biblio_record_entry_bucket->table( 'container_biblio_record_entry_bucket_item' ); -container::biblio_record_entry_bucket->columns( All => qw/id bucket target_biblio_record_entry/ ); +container::biblio_record_entry_bucket_item->table( 'container_biblio_record_entry_bucket_item' ); +container::biblio_record_entry_bucket_item->columns( All => qw/id bucket target_biblio_record_entry/ ); #------------------------------------------------------------------------------- package container::call_number_bucket; @@ -57,8 +57,8 @@ container::call_number_bucket->columns( All => qw/id owner name/ ); package container::call_number_bucket_item; use base qw/container/; -container::call_number_bucket->table( 'container_call_number_bucket_item' ); -container::call_number_bucket->columns( All => qw/id bucket target_call_number/ ); +container::call_number_bucket_item->table( 'container_call_number_bucket_item' ); +container::call_number_bucket_item->columns( All => qw/id bucket target_call_number/ ); 1; -- 2.43.2