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

(-)a/Koha/Schema/Result/Branch.pm (-2 / +17 lines)
Lines 920-925 __PACKAGE__->has_many( Link Here
920
  { cascade_copy => 0, cascade_delete => 0 },
920
  { cascade_copy => 0, cascade_delete => 0 },
921
);
921
);
922
922
923
=head2 reports_branches
924
925
Type: has_many
926
927
Related object: L<Koha::Schema::Result::ReportsBranch>
928
929
=cut
930
931
__PACKAGE__->has_many(
932
  "reports_branches",
933
  "Koha::Schema::Result::ReportsBranch",
934
  { "foreign.branchcode" => "self.branchcode" },
935
  { cascade_copy => 0, cascade_delete => 0 },
936
);
937
923
=head2 reserves
938
=head2 reserves
924
939
925
Type: has_many
940
Type: has_many
Lines 1011-1018 __PACKAGE__->has_many( Link Here
1011
);
1026
);
1012
1027
1013
1028
1014
# Created by DBIx::Class::Schema::Loader v0.07051 @ 2026-02-10 17:39:28
1029
# Created by DBIx::Class::Schema::Loader v0.07051 @ 2026-02-11 14:35:53
1015
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:qVz4KJbAEtT4XDNdAxWc7w
1030
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:2RTm9eV8os0VpZaKOcw0Yw
1016
1031
1017
__PACKAGE__->has_many(
1032
__PACKAGE__->has_many(
1018
    "additional_field_values",
1033
    "additional_field_values",
(-)a/Koha/Schema/Result/SavedSql.pm (-3 / +19 lines)
Lines 185-193 __PACKAGE__->add_columns( Link Here
185
185
186
__PACKAGE__->set_primary_key("id");
186
__PACKAGE__->set_primary_key("id");
187
187
188
=head1 RELATIONS
188
189
189
# Created by DBIx::Class::Schema::Loader v0.07049 @ 2021-01-21 13:39:29
190
=head2 reports_branches
190
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:198dNG9DGQzop+s5IHy7sw
191
192
Type: has_many
193
194
Related object: L<Koha::Schema::Result::ReportsBranch>
195
196
=cut
197
198
__PACKAGE__->has_many(
199
  "reports_branches",
200
  "Koha::Schema::Result::ReportsBranch",
201
  { "foreign.report_id" => "self.id" },
202
  { cascade_copy => 0, cascade_delete => 0 },
203
);
204
205
206
# Created by DBIx::Class::Schema::Loader v0.07051 @ 2026-02-11 14:35:53
207
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:jWUkBLmhpsdSqH7o3U+Ang
191
208
192
__PACKAGE__->add_columns(
209
__PACKAGE__->add_columns(
193
    '+public' => { is_boolean => 1 }
210
    '+public' => { is_boolean => 1 }
194
- 

Return to bug 16631