View | Details | Raw Unified | Return to bug 24606
Collapse All | Expand All

(-)a/Koha/Schema/Result/Borrower.pm (-3 / +17 lines)
Lines 1438-1443 __PACKAGE__->has_many( Link Here
1438
  { cascade_copy => 0, cascade_delete => 0 },
1438
  { cascade_copy => 0, cascade_delete => 0 },
1439
);
1439
);
1440
1440
1441
=head2 item_editor_templates
1442
1443
Type: has_many
1444
1445
Related object: L<Koha::Schema::Result::ItemEditorTemplate>
1446
1447
=cut
1448
1449
__PACKAGE__->has_many(
1450
  "item_editor_templates",
1451
  "Koha::Schema::Result::ItemEditorTemplate",
1452
  { "foreign.borrowernumber" => "self.borrowernumber" },
1453
  { cascade_copy => 0, cascade_delete => 0 },
1454
);
1455
1441
=head2 items_last_borrowers
1456
=head2 items_last_borrowers
1442
1457
1443
Type: has_many
1458
Type: has_many
Lines 2019-2026 Composing rels: L</user_permissions> -> permission Link Here
2019
__PACKAGE__->many_to_many("permissions", "user_permissions", "permission");
2034
__PACKAGE__->many_to_many("permissions", "user_permissions", "permission");
2020
2035
2021
2036
2022
# Created by DBIx::Class::Schema::Loader v0.07049 @ 2022-07-07 12:48:35
2037
# Created by DBIx::Class::Schema::Loader v0.07049 @ 2022-09-28 16:49:34
2023
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:iffysIl9TxAnXVzpWiUJuw
2038
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:z/sH0fzcVxIKip08I7Igvw
2024
2039
2025
__PACKAGE__->has_many(
2040
__PACKAGE__->has_many(
2026
  "extended_attributes",
2041
  "extended_attributes",
2027
- 

Return to bug 24606