|
Lines 1462-1467
__PACKAGE__->has_many(
Link Here
|
| 1462 |
{ cascade_copy => 0, cascade_delete => 0 }, |
1462 |
{ cascade_copy => 0, cascade_delete => 0 }, |
| 1463 |
); |
1463 |
); |
| 1464 |
|
1464 |
|
|
|
1465 |
=head2 item_editor_templates |
| 1466 |
|
| 1467 |
Type: has_many |
| 1468 |
|
| 1469 |
Related object: L<Koha::Schema::Result::ItemEditorTemplate> |
| 1470 |
|
| 1471 |
=cut |
| 1472 |
|
| 1473 |
__PACKAGE__->has_many( |
| 1474 |
"item_editor_templates", |
| 1475 |
"Koha::Schema::Result::ItemEditorTemplate", |
| 1476 |
{ "foreign.borrowernumber" => "self.borrowernumber" }, |
| 1477 |
{ cascade_copy => 0, cascade_delete => 0 }, |
| 1478 |
); |
| 1479 |
|
| 1465 |
=head2 items_last_borrowers |
1480 |
=head2 items_last_borrowers |
| 1466 |
|
1481 |
|
| 1467 |
Type: has_many |
1482 |
Type: has_many |
|
Lines 2043-2050
Composing rels: L</user_permissions> -> permission
Link Here
|
| 2043 |
__PACKAGE__->many_to_many("permissions", "user_permissions", "permission"); |
2058 |
__PACKAGE__->many_to_many("permissions", "user_permissions", "permission"); |
| 2044 |
|
2059 |
|
| 2045 |
|
2060 |
|
| 2046 |
# Created by DBIx::Class::Schema::Loader v0.07049 @ 2022-11-01 07:44:13 |
2061 |
# Created by DBIx::Class::Schema::Loader v0.07049 @ 2022-11-09 18:14:13 |
| 2047 |
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:aezs6MyXhwra3gEHhXjAmg |
2062 |
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:/f1MRKEc2Fz8rwcddv4Rhw |
| 2048 |
|
2063 |
|
| 2049 |
__PACKAGE__->has_many( |
2064 |
__PACKAGE__->has_many( |
| 2050 |
"extended_attributes", |
2065 |
"extended_attributes", |
| 2051 |
- |
|
|