From: gmc Date: Sun, 26 Sep 2010 16:26:21 +0000 (+0000) Subject: added missing columns to CDBI table definitions X-Git-Url: https://old-git.evergreen-ils.org/?a=commitdiff_plain;h=b382946801330c7a92e2f86ffa272c825bedc043;p=evergreen%2Fpines.git added missing columns to CDBI table definitions Signed-off-by: Galen Charlton git-svn-id: svn://svn.open-ils.org/ILS/trunk@18011 dcc99617-32d9-48b4-a31d-7c20da2025e4 --- diff --git a/Open-ILS/src/perlmods/OpenILS/Application/Storage/CDBI/asset.pm b/Open-ILS/src/perlmods/OpenILS/Application/Storage/CDBI/asset.pm index dca9fe461b..39eb01b2ad 100644 --- a/Open-ILS/src/perlmods/OpenILS/Application/Storage/CDBI/asset.pm +++ b/Open-ILS/src/perlmods/OpenILS/Application/Storage/CDBI/asset.pm @@ -10,7 +10,7 @@ use base qw/asset/; __PACKAGE__->table( 'asset_copy_location' ); __PACKAGE__->columns( Primary => qw/id/ ); -__PACKAGE__->columns( Essential => qw/name owning_lib holdable hold_verify opac_visible circulate/ ); +__PACKAGE__->columns( Essential => qw/name owning_lib holdable hold_verify opac_visible circulate label_prefix label_suffix/ ); #------------------------------------------------------------------------------- package asset::copy_location_order; @@ -35,7 +35,7 @@ use base qw/asset/; __PACKAGE__->table( 'asset_call_number' ); __PACKAGE__->columns( Primary => qw/id/ ); __PACKAGE__->columns( Essential => qw/record label creator create_date editor - edit_date record label owning_lib deleted/ ); + edit_date record label owning_lib deleted label_class label_sortkey/ ); #------------------------------------------------------------------------------- package asset::call_number_note; @@ -56,7 +56,7 @@ __PACKAGE__->columns( Essential => qw/call_number barcode creator create_date ed fine_level circulate deposit price ref opac_visible circ_as_type circ_modifier deposit_amount location mint_condition holdable dummy_title dummy_author deleted alert_message - age_protect floating/ ); + age_protect floating cost status_changed_time/ ); #------------------------------------------------------------------------------- package asset::stat_cat;