Add serial.record_entry to CDBI definitions
authordbs <dbs@dcc99617-32d9-48b4-a31d-7c20da2025e4>
Fri, 1 Oct 2010 05:16:41 +0000 (05:16 +0000)
committerdbs <dbs@dcc99617-32d9-48b4-a31d-7c20da2025e4>
Fri, 1 Oct 2010 05:16:41 +0000 (05:16 +0000)
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

Open-ILS/src/perlmods/OpenILS/Application/Storage/CDBI/serial.pm

index 3e8f382..7879cb7 100644 (file)
@@ -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;