[open-ils-commits] r18114 - branches/rel_2_0/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:29:47 EDT 2010
Author: dbs
Date: 2010-10-01 01:29:43 -0400 (Fri, 01 Oct 2010)
New Revision: 18114
Modified:
branches/rel_2_0/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: branches/rel_2_0/Open-ILS/src/perlmods/OpenILS/Application/Storage/CDBI/serial.pm
===================================================================
--- branches/rel_2_0/Open-ILS/src/perlmods/OpenILS/Application/Storage/CDBI/serial.pm 2010-10-01 05:24:38 UTC (rev 18113)
+++ branches/rel_2_0/Open-ILS/src/perlmods/OpenILS/Application/Storage/CDBI/serial.pm 2010-10-01 05:29:43 UTC (rev 18114)
@@ -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