|
Lines 2002-2007
__PACKAGE__->has_many(
Link Here
|
| 2002 |
{ cascade_copy => 0, cascade_delete => 0 }, |
2002 |
{ cascade_copy => 0, cascade_delete => 0 }, |
| 2003 |
); |
2003 |
); |
| 2004 |
|
2004 |
|
|
|
2005 |
=head2 ticket_updates_assignees |
| 2006 |
|
| 2007 |
Type: has_many |
| 2008 |
|
| 2009 |
Related object: L<Koha::Schema::Result::TicketUpdate> |
| 2010 |
|
| 2011 |
=cut |
| 2012 |
|
| 2013 |
__PACKAGE__->has_many( |
| 2014 |
"ticket_updates_assignees", |
| 2015 |
"Koha::Schema::Result::TicketUpdate", |
| 2016 |
{ "foreign.assignee_id" => "self.borrowernumber" }, |
| 2017 |
{ cascade_copy => 0, cascade_delete => 0 }, |
| 2018 |
); |
| 2019 |
|
| 2020 |
=head2 tickets_assignees |
| 2021 |
|
| 2022 |
Type: has_many |
| 2023 |
|
| 2024 |
Related object: L<Koha::Schema::Result::Ticket> |
| 2025 |
|
| 2026 |
=cut |
| 2027 |
|
| 2028 |
__PACKAGE__->has_many( |
| 2029 |
"tickets_assignees", |
| 2030 |
"Koha::Schema::Result::Ticket", |
| 2031 |
{ "foreign.assignee_id" => "self.borrowernumber" }, |
| 2032 |
{ cascade_copy => 0, cascade_delete => 0 }, |
| 2033 |
); |
| 2034 |
|
| 2005 |
=head2 tickets_reporters |
2035 |
=head2 tickets_reporters |
| 2006 |
|
2036 |
|
| 2007 |
Type: has_many |
2037 |
Type: has_many |
|
Lines 2158-2165
Composing rels: L</user_permissions> -> permission
Link Here
|
| 2158 |
__PACKAGE__->many_to_many("permissions", "user_permissions", "permission"); |
2188 |
__PACKAGE__->many_to_many("permissions", "user_permissions", "permission"); |
| 2159 |
|
2189 |
|
| 2160 |
|
2190 |
|
| 2161 |
# Created by DBIx::Class::Schema::Loader v0.07049 @ 2023-11-03 14:18:06 |
2191 |
# Created by DBIx::Class::Schema::Loader v0.07049 @ 2023-12-29 11:05:09 |
| 2162 |
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:PcGXqEI1ULB+Uoclqfbxig |
2192 |
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:U1id9VAmZO9i6P+D97N0yA |
| 2163 |
|
2193 |
|
| 2164 |
__PACKAGE__->has_many( |
2194 |
__PACKAGE__->has_many( |
| 2165 |
"restrictions", |
2195 |
"restrictions", |