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

(-)a/Koha/Schema/Result/Branch.pm (-2 / +17 lines)
Lines 551-556 __PACKAGE__->has_many( Link Here
551
  { cascade_copy => 0, cascade_delete => 0 },
551
  { cascade_copy => 0, cascade_delete => 0 },
552
);
552
);
553
553
554
=head2 configurations
555
556
Type: has_many
557
558
Related object: L<Koha::Schema::Result::Configuration>
559
560
=cut
561
562
__PACKAGE__->has_many(
563
  "configurations",
564
  "Koha::Schema::Result::Configuration",
565
  { "foreign.library_id" => "self.branchcode" },
566
  { cascade_copy => 0, cascade_delete => 0 },
567
);
568
554
=head2 course_items
569
=head2 course_items
555
570
556
Type: has_many
571
Type: has_many
Lines 867-874 __PACKAGE__->has_many( Link Here
867
);
882
);
868
883
869
884
870
# Created by DBIx::Class::Schema::Loader v0.07049 @ 2021-11-19 14:20:11
885
# Created by DBIx::Class::Schema::Loader v0.07049 @ 2021-12-23 15:46:52
871
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:v83MNP0UpFzlnax8rSQWSA
886
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:JEbin9XFqQecBdQbbXP8Eg
872
887
873
__PACKAGE__->add_columns(
888
__PACKAGE__->add_columns(
874
    '+pickup_location' => { is_boolean => 1 },
889
    '+pickup_location' => { is_boolean => 1 },
(-)a/Koha/Schema/Result/Category.pm (-2 / +17 lines)
Lines 328-336 __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
331
332
332
# Created by DBIx::Class::Schema::Loader v0.07049 @ 2021-11-19 14:20:11
333
Type: has_many
333
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:xrnHXXv5sd3S2sMEKzHLmA
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
346
347
# Created by DBIx::Class::Schema::Loader v0.07049 @ 2021-12-23 15:46:52
348
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:AlL9KyiY8x2oi6BQ8xmKPg
334
349
335
__PACKAGE__->add_columns(
350
__PACKAGE__->add_columns(
336
    '+exclude_from_local_holds_priority' => { is_boolean => 1 },
351
    '+exclude_from_local_holds_priority' => { is_boolean => 1 },
(-)a/Koha/Schema/Result/Itemtype.pm (-3 / +17 lines)
Lines 252-257 __PACKAGE__->has_many( Link Here
252
  { cascade_copy => 0, cascade_delete => 0 },
252
  { cascade_copy => 0, cascade_delete => 0 },
253
);
253
);
254
254
255
=head2 configurations
256
257
Type: has_many
258
259
Related object: L<Koha::Schema::Result::Configuration>
260
261
=cut
262
263
__PACKAGE__->has_many(
264
  "configurations",
265
  "Koha::Schema::Result::Configuration",
266
  { "foreign.item_type" => "self.itemtype" },
267
  { cascade_copy => 0, cascade_delete => 0 },
268
);
269
255
=head2 itemtypes
270
=head2 itemtypes
256
271
257
Type: has_many
272
Type: has_many
Lines 333-340 __PACKAGE__->has_many( Link Here
333
);
348
);
334
349
335
350
336
# Created by DBIx::Class::Schema::Loader v0.07046 @ 2021-04-22 09:12:04
351
# Created by DBIx::Class::Schema::Loader v0.07049 @ 2021-12-23 15:46:52
337
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:/kFAnQQ7q1KaLJ9h7vk0vg
352
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:9z5L14pLpt66RyfHK+rxkA
338
353
339
__PACKAGE__->add_columns(
354
__PACKAGE__->add_columns(
340
    '+rentalcharge_hourly_calendar' => { is_boolean => 1 },
355
    '+rentalcharge_hourly_calendar' => { is_boolean => 1 },
341
- 

Return to bug 26129