|
Lines 1447-1452
__PACKAGE__->has_many(
Link Here
|
| 1447 |
{ cascade_copy => 0, cascade_delete => 0 }, |
1447 |
{ cascade_copy => 0, cascade_delete => 0 }, |
| 1448 |
); |
1448 |
); |
| 1449 |
|
1449 |
|
|
|
1450 |
=head2 item_editor_templates |
| 1451 |
|
| 1452 |
Type: has_many |
| 1453 |
|
| 1454 |
Related object: L<Koha::Schema::Result::ItemEditorTemplate> |
| 1455 |
|
| 1456 |
=cut |
| 1457 |
|
| 1458 |
__PACKAGE__->has_many( |
| 1459 |
"item_editor_templates", |
| 1460 |
"Koha::Schema::Result::ItemEditorTemplate", |
| 1461 |
{ "foreign.borrowernumber" => "self.borrowernumber" }, |
| 1462 |
{ cascade_copy => 0, cascade_delete => 0 }, |
| 1463 |
); |
| 1464 |
|
| 1450 |
=head2 items_last_borrowers |
1465 |
=head2 items_last_borrowers |
| 1451 |
|
1466 |
|
| 1452 |
Type: has_many |
1467 |
Type: has_many |
|
Lines 2028-2035
Composing rels: L</user_permissions> -> permission
Link Here
|
| 2028 |
__PACKAGE__->many_to_many("permissions", "user_permissions", "permission"); |
2043 |
__PACKAGE__->many_to_many("permissions", "user_permissions", "permission"); |
| 2029 |
|
2044 |
|
| 2030 |
|
2045 |
|
| 2031 |
# Created by DBIx::Class::Schema::Loader v0.07049 @ 2022-10-03 18:03:21 |
2046 |
# Created by DBIx::Class::Schema::Loader v0.07049 @ 2022-10-12 10:55:31 |
| 2032 |
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:jqvQns/EYDe6ao4z32XKyg |
2047 |
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:ViRHHq0gu/c0JlLv3TDn/w |
| 2033 |
|
2048 |
|
| 2034 |
__PACKAGE__->has_many( |
2049 |
__PACKAGE__->has_many( |
| 2035 |
"extended_attributes", |
2050 |
"extended_attributes", |
| 2036 |
- |
|
|