|
Lines 1702-1707
__PACKAGE__->has_many(
Link Here
|
| 1702 |
{ cascade_copy => 0, cascade_delete => 0 }, |
1702 |
{ cascade_copy => 0, cascade_delete => 0 }, |
| 1703 |
); |
1703 |
); |
| 1704 |
|
1704 |
|
|
|
1705 |
=head2 record_sources |
| 1706 |
|
| 1707 |
Type: has_many |
| 1708 |
|
| 1709 |
Related object: L<Koha::Schema::Result::RecordSource> |
| 1710 |
|
| 1711 |
=cut |
| 1712 |
|
| 1713 |
__PACKAGE__->has_many( |
| 1714 |
"record_sources", |
| 1715 |
"Koha::Schema::Result::RecordSource", |
| 1716 |
{ "foreign.patron_id" => "self.borrowernumber" }, |
| 1717 |
{ cascade_copy => 0, cascade_delete => 0 }, |
| 1718 |
); |
| 1719 |
|
| 1705 |
=head2 reserves |
1720 |
=head2 reserves |
| 1706 |
|
1721 |
|
| 1707 |
Type: has_many |
1722 |
Type: has_many |
|
Lines 2103-2110
Composing rels: L</user_permissions> -> permission
Link Here
|
| 2103 |
__PACKAGE__->many_to_many("permissions", "user_permissions", "permission"); |
2118 |
__PACKAGE__->many_to_many("permissions", "user_permissions", "permission"); |
| 2104 |
|
2119 |
|
| 2105 |
|
2120 |
|
| 2106 |
# Created by DBIx::Class::Schema::Loader v0.07049 @ 2023-04-06 15:46:57 |
2121 |
# Created by DBIx::Class::Schema::Loader v0.07049 @ 2023-09-13 11:37:14 |
| 2107 |
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:f6omVb7EtiysdaWTX3IRzg |
2122 |
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:GPfleBfgKYZk6xyCvLnTGA |
| 2108 |
|
2123 |
|
| 2109 |
__PACKAGE__->has_many( |
2124 |
__PACKAGE__->has_many( |
| 2110 |
"restrictions", |
2125 |
"restrictions", |
| 2111 |
- |
|
|