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

(-)a/Koha/Schema/Result/Branch.pm (-3 / +32 lines)
Lines 631-636 __PACKAGE__->has_many( Link Here
631
  { cascade_copy => 0, cascade_delete => 0 },
631
  { cascade_copy => 0, cascade_delete => 0 },
632
);
632
);
633
633
634
=head2 repeatable_holidays
635
636
Type: has_many
637
638
Related object: L<Koha::Schema::Result::RepeatableHoliday>
639
640
=cut
641
642
__PACKAGE__->has_many(
643
  "repeatable_holidays",
644
  "Koha::Schema::Result::RepeatableHoliday",
645
  { "foreign.branchcode" => "self.branchcode" },
646
  { cascade_copy => 0, cascade_delete => 0 },
647
);
648
634
=head2 reserves
649
=head2 reserves
635
650
636
Type: has_many
651
Type: has_many
Lines 646-651 __PACKAGE__->has_many( Link Here
646
  { cascade_copy => 0, cascade_delete => 0 },
661
  { cascade_copy => 0, cascade_delete => 0 },
647
);
662
);
648
663
664
=head2 special_holidays
665
666
Type: has_many
667
668
Related object: L<Koha::Schema::Result::SpecialHoliday>
669
670
=cut
671
672
__PACKAGE__->has_many(
673
  "special_holidays",
674
  "Koha::Schema::Result::SpecialHoliday",
675
  { "foreign.branchcode" => "self.branchcode" },
676
  { cascade_copy => 0, cascade_delete => 0 },
677
);
678
649
=head2 stockrotationstages
679
=head2 stockrotationstages
650
680
651
Type: has_many
681
Type: has_many
Lines 707-714 __PACKAGE__->has_many( Link Here
707
);
737
);
708
738
709
739
710
# Created by DBIx::Class::Schema::Loader v0.07046 @ 2019-10-14 09:59:52
740
# Created by DBIx::Class::Schema::Loader v0.07046 @ 2019-12-26 10:51:35
711
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:vWDJAm3K2jiyRS3htyip6A
741
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:vxx2lpU/W6cC5muhVAO1jw
712
742
713
__PACKAGE__->add_columns(
743
__PACKAGE__->add_columns(
714
    '+pickup_location' => { is_boolean => 1 }
744
    '+pickup_location' => { is_boolean => 1 }
715
- 

Return to bug 24289