[open-ils-commits] r18112 - trunk/Open-ILS/src/perlmods/OpenILS/Application/Storage/CDBI (dbs)

svn at svn.open-ils.org svn at svn.open-ils.org
Fri Oct 1 01:16:44 EDT 2010


Author: dbs
Date: 2010-10-01 01:16:41 -0400 (Fri, 01 Oct 2010)
New Revision: 18112

Modified:
   trunk/Open-ILS/src/perlmods/OpenILS/Application/Storage/CDBI/serial.pm
Log:
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.


Modified: trunk/Open-ILS/src/perlmods/OpenILS/Application/Storage/CDBI/serial.pm
===================================================================
--- trunk/Open-ILS/src/perlmods/OpenILS/Application/Storage/CDBI/serial.pm	2010-09-30 23:06:39 UTC (rev 18111)
+++ trunk/Open-ILS/src/perlmods/OpenILS/Application/Storage/CDBI/serial.pm	2010-10-01 05:16:41 UTC (rev 18112)
@@ -46,5 +46,16 @@
 				   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;
 



More information about the open-ils-commits mailing list