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

(-)a/Koha/Schema/Result/Branch.pm (+15 lines)
Lines 526-531 __PACKAGE__->has_many( Link Here
526
  { cascade_copy => 0, cascade_delete => 0 },
526
  { cascade_copy => 0, cascade_delete => 0 },
527
);
527
);
528
528
529
=head2 configurations
530
531
Type: has_many
532
533
Related object: L<Koha::Schema::Result::Configuration>
534
535
=cut
536
537
__PACKAGE__->has_many(
538
  "configurations",
539
  "Koha::Schema::Result::Configuration",
540
  { "foreign.library_id" => "self.branchcode" },
541
  { cascade_copy => 0, cascade_delete => 0 },
542
);
543
529
=head2 course_items
544
=head2 course_items
530
545
531
Type: has_many
546
Type: has_many
(-)a/Koha/Schema/Result/Category.pm (+15 lines)
Lines 328-333 __PACKAGE__->has_many( Link Here
328
  { cascade_copy => 0, cascade_delete => 0 },
328
  { cascade_copy => 0, cascade_delete => 0 },
329
);
329
);
330
330
331
=head2 configurations
332
333
Type: has_many
334
335
Related object: L<Koha::Schema::Result::Configuration>
336
337
=cut
338
339
__PACKAGE__->has_many(
340
  "configurations",
341
  "Koha::Schema::Result::Configuration",
342
  { "foreign.category_id" => "self.categorycode" },
343
  { cascade_copy => 0, cascade_delete => 0 },
344
);
345
331
=head2 pseudonymized_transactions
346
=head2 pseudonymized_transactions
332
347
333
Type: has_many
348
Type: has_many
(-)a/Koha/Schema/Result/Itemtype.pm (-1 / +15 lines)
Lines 257-262 __PACKAGE__->has_many( Link Here
257
  { cascade_copy => 0, cascade_delete => 0 },
257
  { cascade_copy => 0, cascade_delete => 0 },
258
);
258
);
259
259
260
=head2 configurations
261
262
Type: has_many
263
264
Related object: L<Koha::Schema::Result::Configuration>
265
266
=cut
267
268
__PACKAGE__->has_many(
269
  "configurations",
270
  "Koha::Schema::Result::Configuration",
271
  { "foreign.item_type" => "self.itemtype" },
272
  { cascade_copy => 0, cascade_delete => 0 },
273
);
274
260
=head2 itemtypes_branches
275
=head2 itemtypes_branches
261
276
262
Type: has_many
277
Type: has_many
263
- 

Return to bug 26129