From 2fd21bdfd9c5909c8cec59051f458d773fab72a1 Mon Sep 17 00:00:00 2001 From: dbs Date: Fri, 1 Oct 2010 05:16:41 +0000 Subject: [PATCH] Add serial.record_entry to CDBI definitions Better late than never; never added the serial.record_entry CDBI definitions in the 1.6 series, but as that table can still be active in 2.0 we might as well get it in place. git-svn-id: svn://svn.open-ils.org/ILS/trunk@18112 dcc99617-32d9-48b4-a31d-7c20da2025e4 --- .../src/perlmods/OpenILS/Application/Storage/CDBI/serial.pm | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/Open-ILS/src/perlmods/OpenILS/Application/Storage/CDBI/serial.pm b/Open-ILS/src/perlmods/OpenILS/Application/Storage/CDBI/serial.pm index 3e8f382293..7879cb7068 100644 --- a/Open-ILS/src/perlmods/OpenILS/Application/Storage/CDBI/serial.pm +++ b/Open-ILS/src/perlmods/OpenILS/Application/Storage/CDBI/serial.pm @@ -46,5 +46,16 @@ __PACKAGE__->columns( Essential => qw/call_number barcode creator create_date ed holdable dummy_title dummy_author deleted alert_message label age_protect floating label_sort_key contents/ ); +#------------------------------------------------------------------------------- +package serial::record_entry; +use base qw/serial/; + +__PACKAGE__->table( 'serial_record_entry' ); +__PACKAGE__->columns( Primary => qw/id/ ); +__PACKAGE__->columns( Essential => qw/active record create_date creator + deleted edit_date editor id last_xact_id marc source + owning_lib/ ); + + 1; -- 2.11.0