|
|
@ -1932,6 +1932,51 @@ __PACKAGE__->has_many( |
|
|
|
{ cascade_copy => 0, cascade_delete => 0 }, |
|
|
|
); |
|
|
|
|
|
|
|
=head2 ticket_updates |
|
|
|
|
|
|
|
Type: has_many |
|
|
|
|
|
|
|
Related object: L<Koha::Schema::Result::TicketUpdate> |
|
|
|
|
|
|
|
=cut |
|
|
|
|
|
|
|
__PACKAGE__->has_many( |
|
|
|
"ticket_updates", |
|
|
|
"Koha::Schema::Result::TicketUpdate", |
|
|
|
{ "foreign.user_id" => "self.borrowernumber" }, |
|
|
|
{ cascade_copy => 0, cascade_delete => 0 }, |
|
|
|
); |
|
|
|
|
|
|
|
=head2 tickets_reporters |
|
|
|
|
|
|
|
Type: has_many |
|
|
|
|
|
|
|
Related object: L<Koha::Schema::Result::Ticket> |
|
|
|
|
|
|
|
=cut |
|
|
|
|
|
|
|
__PACKAGE__->has_many( |
|
|
|
"tickets_reporters", |
|
|
|
"Koha::Schema::Result::Ticket", |
|
|
|
{ "foreign.reporter_id" => "self.borrowernumber" }, |
|
|
|
{ cascade_copy => 0, cascade_delete => 0 }, |
|
|
|
); |
|
|
|
|
|
|
|
=head2 tickets_resolvers |
|
|
|
|
|
|
|
Type: has_many |
|
|
|
|
|
|
|
Related object: L<Koha::Schema::Result::Ticket> |
|
|
|
|
|
|
|
=cut |
|
|
|
|
|
|
|
__PACKAGE__->has_many( |
|
|
|
"tickets_resolvers", |
|
|
|
"Koha::Schema::Result::Ticket", |
|
|
|
{ "foreign.resolver_id" => "self.borrowernumber" }, |
|
|
|
{ cascade_copy => 0, cascade_delete => 0 }, |
|
|
|
); |
|
|
|
|
|
|
|
=head2 tmp_holdsqueues |
|
|
|
|
|
|
|
Type: has_many |
|
|
@ -2058,8 +2103,8 @@ Composing rels: L</user_permissions> -> permission |
|
|
|
__PACKAGE__->many_to_many("permissions", "user_permissions", "permission"); |
|
|
|
|
|
|
|
|
|
|
|
# Created by DBIx::Class::Schema::Loader v0.07049 @ 2022-11-10 17:43:30 |
|
|
|
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:5hh2lGCcKclyTnY7KNPkvg |
|
|
|
# Created by DBIx::Class::Schema::Loader v0.07049 @ 2023-03-06 14:23:57 |
|
|
|
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:/63fcorna7WyO+DyLg8qLA |
|
|
|
|
|
|
|
__PACKAGE__->has_many( |
|
|
|
"restrictions", |
|
|
|