Bug 23152: Implement koha_object[s]_class when needed
[koha-equinox.git] / Koha / Schema / Result / Reserve.pm
index 213df08..086b621 100644 (file)
@@ -354,4 +354,11 @@ __PACKAGE__->add_columns(
     '+suspend'         => { is_boolean => 1 }
 );
 
+sub koha_object_class {
+    'Koha::Hold';
+}
+sub koha_objects_class {
+    'Koha::Holds';
+}
+
 1;