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

(-)a/Koha/Schema/Result/Branch.pm (-17 / +2 lines)
Lines 541-561 __PACKAGE__->has_many( Link Here
541
  { cascade_copy => 0, cascade_delete => 0 },
541
  { cascade_copy => 0, cascade_delete => 0 },
542
);
542
);
543
543
544
=head2 itemtypes_branches
545
546
Type: has_many
547
548
Related object: L<Koha::Schema::Result::ItemtypesBranch>
549
550
=cut
551
552
__PACKAGE__->has_many(
553
  "itemtypes_branches",
554
  "Koha::Schema::Result::ItemtypesBranch",
555
  { "foreign.branchcode" => "self.branchcode" },
556
  { cascade_copy => 0, cascade_delete => 0 },
557
);
558
559
=head2 library_groups
544
=head2 library_groups
560
545
561
Type: has_many
546
Type: has_many
Lines 662-669 __PACKAGE__->has_many( Link Here
662
);
647
);
663
648
664
649
665
# Created by DBIx::Class::Schema::Loader v0.07048 @ 2019-07-04 04:56:47
650
# Created by DBIx::Class::Schema::Loader v0.07046 @ 2019-09-19 11:14:52
666
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:15/s0/8d2cNB9YLLlsEY4w
651
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:Hccou+A64WrrUzGcL40OEA
667
652
668
__PACKAGE__->add_columns(
653
__PACKAGE__->add_columns(
669
    '+pickup_location' => { is_boolean => 1 }
654
    '+pickup_location' => { is_boolean => 1 }
(-)a/Koha/Schema/Result/Itemtype.pm (-18 / +2 lines)
Lines 181-201 __PACKAGE__->has_many( Link Here
181
  { cascade_copy => 0, cascade_delete => 0 },
181
  { cascade_copy => 0, cascade_delete => 0 },
182
);
182
);
183
183
184
=head2 itemtypes_branches
185
186
Type: has_many
187
188
Related object: L<Koha::Schema::Result::ItemtypesBranch>
189
190
=cut
191
192
__PACKAGE__->has_many(
193
  "itemtypes_branches",
194
  "Koha::Schema::Result::ItemtypesBranch",
195
  { "foreign.itemtype" => "self.itemtype" },
196
  { cascade_copy => 0, cascade_delete => 0 },
197
);
198
199
=head2 old_reserves
184
=head2 old_reserves
200
185
201
Type: has_many
186
Type: has_many
Lines 227-234 __PACKAGE__->has_many( Link Here
227
);
212
);
228
213
229
214
230
# Created by DBIx::Class::Schema::Loader v0.07048 @ 2019-07-04 04:56:48
215
# Created by DBIx::Class::Schema::Loader v0.07046 @ 2019-09-19 11:14:52
231
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:Qo6jabJSQGeYJ542ebSJfg
216
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:Y7pbfxJyUGWh5frlfDuEzg
232
217
233
# Use the ItemtypeLocalization view to create the join on localization
218
# Use the ItemtypeLocalization view to create the join on localization
234
our $LANGUAGE;
219
our $LANGUAGE;
235
- 

Return to bug 14697