View | Details | Raw Unified | Return to bug 21082
Collapse All | Expand All

(-)a/Koha/Schema/Result/Branch.pm (-3 / +17 lines)
Lines 316-321 __PACKAGE__->has_many( Link Here
316
  { cascade_copy => 0, cascade_delete => 0 },
316
  { cascade_copy => 0, cascade_delete => 0 },
317
);
317
);
318
318
319
=head2 branches_overdrive
320
321
Type: might_have
322
323
Related object: L<Koha::Schema::Result::BranchesOverdrive>
324
325
=cut
326
327
__PACKAGE__->might_have(
328
  "branches_overdrive",
329
  "Koha::Schema::Result::BranchesOverdrive",
330
  { "foreign.branchcode" => "self.branchcode" },
331
  { cascade_copy => 0, cascade_delete => 0 },
332
);
333
319
=head2 branchtransfers_frombranches
334
=head2 branchtransfers_frombranches
320
335
321
Type: has_many
336
Type: has_many
Lines 617-624 __PACKAGE__->has_many( Link Here
617
);
632
);
618
633
619
634
620
# Created by DBIx::Class::Schema::Loader v0.07042 @ 2018-09-06 16:28:49
635
# Created by DBIx::Class::Schema::Loader v0.07042 @ 2018-10-02 00:27:54
621
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:N0tdcSAb4bMht/i0chipYQ
636
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:YPE+MSmyDELhFFKq+SpA5w
622
637
623
638
624
# You can replace this text with custom code or comments, and it will be preserved on regeneration
639
# You can replace this text with custom code or comments, and it will be preserved on regeneration
625
- 

Return to bug 21082