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
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;