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

(-)a/Koha/Schema/Result/Branch.pm (-3 / +17 lines)
Lines 743-748 __PACKAGE__->has_many( Link Here
743
  { cascade_copy => 0, cascade_delete => 0 },
743
  { cascade_copy => 0, cascade_delete => 0 },
744
);
744
);
745
745
746
=head2 smtp_server
747
748
Type: might_have
749
750
Related object: L<Koha::Schema::Result::SmtpServer>
751
752
=cut
753
754
__PACKAGE__->might_have(
755
  "smtp_server",
756
  "Koha::Schema::Result::SmtpServer",
757
  { "foreign.library_id" => "self.branchcode" },
758
  { cascade_copy => 0, cascade_delete => 0 },
759
);
760
746
=head2 special_holidays
761
=head2 special_holidays
747
762
748
Type: has_many
763
Type: has_many
Lines 819-826 __PACKAGE__->has_many( Link Here
819
);
834
);
820
835
821
836
822
# Created by DBIx::Class::Schema::Loader v0.07048 @ 2020-06-12 14:01:29
837
# Created by DBIx::Class::Schema::Loader v0.07046 @ 2020-08-07 17:39:49
823
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:hU6Ldf0uN2iV1h7llLH+4g
838
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:l15bfrtGZfKXtqDktyubbA
824
839
825
__PACKAGE__->add_columns(
840
__PACKAGE__->add_columns(
826
    '+pickup_location' => { is_boolean => 1 }
841
    '+pickup_location' => { is_boolean => 1 }
827
- 

Return to bug 22343