@@ -, +, @@ --- Koha/Schema/Result/PreservationProcessing.pm | 7 ++++++- Koha/Schema/Result/PreservationProcessingAttributesItem.pm | 7 ++++++- Koha/Schema/Result/PreservationTrain.pm | 7 ++++++- Koha/Schema/Result/PreservationTrainsItem.pm | 7 ++++++- 4 files changed, 24 insertions(+), 4 deletions(-) --- a/Koha/Schema/Result/PreservationProcessing.pm +++ a/Koha/Schema/Result/PreservationProcessing.pm @@ -111,6 +111,11 @@ __PACKAGE__->has_many( # Created by DBIx::Class::Schema::Loader v0.07049 @ 2023-04-17 18:47:47 # DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:m7bHppTX3UpQY9CfmRPqQA +sub koha_object_class { + 'Koha::Preservation::Processing'; +} +sub koha_objects_class { + 'Koha::Preservation::Processings'; +} -# You can replace this text with custom code or comments, and it will be preserved on regeneration 1; --- a/Koha/Schema/Result/PreservationProcessingAttributesItem.pm +++ a/Koha/Schema/Result/PreservationProcessingAttributesItem.pm @@ -108,6 +108,11 @@ __PACKAGE__->belongs_to( # Created by DBIx::Class::Schema::Loader v0.07049 @ 2023-04-17 18:47:47 # DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:CiFAelBwfhQzRX1cL0ssqA +sub koha_object_class { + 'Koha::Preservation::Train::Item::Attribute'; +} +sub koha_objects_class { + 'Koha::Preservation::Train::Item::Attributes'; +} -# You can replace this text with custom code or comments, and it will be preserved on regeneration 1; --- a/Koha/Schema/Result/PreservationTrain.pm +++ a/Koha/Schema/Result/PreservationTrain.pm @@ -190,6 +190,11 @@ __PACKAGE__->has_many( # Created by DBIx::Class::Schema::Loader v0.07049 @ 2023-04-17 18:47:47 # DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:ojxQ0wFj2datCPVjeuTBWw +sub koha_object_class { + 'Koha::Preservation::Train'; +} +sub koha_objects_class { + 'Koha::Preservation::Trains'; +} -# You can replace this text with custom code or comments, and it will be preserved on regeneration 1; --- a/Koha/Schema/Result/PreservationTrainsItem.pm +++ a/Koha/Schema/Result/PreservationTrainsItem.pm @@ -190,6 +190,11 @@ __PACKAGE__->belongs_to( # Created by DBIx::Class::Schema::Loader v0.07049 @ 2023-04-17 18:47:47 # DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:lpvjaV+qXrIDVlimBaycgA +sub koha_object_class { + 'Koha::Preservation::Train::Item'; +} +sub koha_objects_class { + 'Koha::Preservation::Train::Items'; +} -# You can replace this text with custom code or comments, and it will be preserved on regeneration 1; --