@@ -, +, @@ --- Koha/Schema/Result/Borrower.pm | 19 +++++++++++++++++-- 1 file changed, 17 insertions(+), 2 deletions(-) --- a/Koha/Schema/Result/Borrower.pm +++ a/Koha/Schema/Result/Borrower.pm @@ -1462,6 +1462,21 @@ __PACKAGE__->has_many( { cascade_copy => 0, cascade_delete => 0 }, ); +=head2 item_editor_templates + +Type: has_many + +Related object: L + +=cut + +__PACKAGE__->has_many( + "item_editor_templates", + "Koha::Schema::Result::ItemEditorTemplate", + { "foreign.borrowernumber" => "self.borrowernumber" }, + { cascade_copy => 0, cascade_delete => 0 }, +); + =head2 items_last_borrowers Type: has_many @@ -2043,8 +2058,8 @@ Composing rels: L -> permission __PACKAGE__->many_to_many("permissions", "user_permissions", "permission"); -# Created by DBIx::Class::Schema::Loader v0.07049 @ 2022-11-01 07:44:13 -# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:aezs6MyXhwra3gEHhXjAmg +# Created by DBIx::Class::Schema::Loader v0.07049 @ 2022-11-09 18:14:13 +# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:/f1MRKEc2Fz8rwcddv4Rhw __PACKAGE__->has_many( "extended_attributes", --