|
Lines 1717-1722
__PACKAGE__->has_many(
Link Here
|
| 1717 |
{ cascade_copy => 0, cascade_delete => 0 }, |
1717 |
{ cascade_copy => 0, cascade_delete => 0 }, |
| 1718 |
); |
1718 |
); |
| 1719 |
|
1719 |
|
|
|
1720 |
=head2 record_sources |
| 1721 |
|
| 1722 |
Type: has_many |
| 1723 |
|
| 1724 |
Related object: L<Koha::Schema::Result::RecordSource> |
| 1725 |
|
| 1726 |
=cut |
| 1727 |
|
| 1728 |
__PACKAGE__->has_many( |
| 1729 |
"record_sources", |
| 1730 |
"Koha::Schema::Result::RecordSource", |
| 1731 |
{ "foreign.patron_id" => "self.borrowernumber" }, |
| 1732 |
{ cascade_copy => 0, cascade_delete => 0 }, |
| 1733 |
); |
| 1734 |
|
| 1720 |
=head2 reserves |
1735 |
=head2 reserves |
| 1721 |
|
1736 |
|
| 1722 |
Type: has_many |
1737 |
Type: has_many |
|
Lines 2118-2125
Composing rels: L</user_permissions> -> permission
Link Here
|
| 2118 |
__PACKAGE__->many_to_many("permissions", "user_permissions", "permission"); |
2133 |
__PACKAGE__->many_to_many("permissions", "user_permissions", "permission"); |
| 2119 |
|
2134 |
|
| 2120 |
|
2135 |
|
| 2121 |
# Created by DBIx::Class::Schema::Loader v0.07049 @ 2023-10-10 14:16:46 |
2136 |
# Created by DBIx::Class::Schema::Loader v0.07049 @ 2023-10-24 19:03:09 |
| 2122 |
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:nIMnqyBVBam7NvIx4aDfHw |
2137 |
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:BQ1XRx8cWcRIRqwwkIDI/g |
| 2123 |
|
2138 |
|
| 2124 |
__PACKAGE__->has_many( |
2139 |
__PACKAGE__->has_many( |
| 2125 |
"restrictions", |
2140 |
"restrictions", |
| 2126 |
- |
|
|