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

(-)a/Koha/Schema/Result/Branch.pm (-2 / +17 lines)
Lines 347-352 __PACKAGE__->has_many( Link Here
347
  { cascade_copy => 0, cascade_delete => 0 },
347
  { cascade_copy => 0, cascade_delete => 0 },
348
);
348
);
349
349
350
=head2 auth_provider_domains
351
352
Type: has_many
353
354
Related object: L<Koha::Schema::Result::AuthProviderDomain>
355
356
=cut
357
358
__PACKAGE__->has_many(
359
  "auth_provider_domains",
360
  "Koha::Schema::Result::AuthProviderDomain",
361
  { "foreign.default_library_id" => "self.branchcode" },
362
  { cascade_copy => 0, cascade_delete => 0 },
363
);
364
350
=head2 authorised_values_branches
365
=head2 authorised_values_branches
351
366
352
Type: has_many
367
Type: has_many
Lines 903-910 __PACKAGE__->has_many( Link Here
903
);
918
);
904
919
905
920
906
# Created by DBIx::Class::Schema::Loader v0.07049 @ 2022-09-16 13:09:04
921
# Created by DBIx::Class::Schema::Loader v0.07049 @ 2022-09-23 17:26:47
907
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:4nMDSKcOjnGsjUQkkyZtwg
922
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:L55G1NNTzyYIwECcFbokXw
908
923
909
__PACKAGE__->add_columns(
924
__PACKAGE__->add_columns(
910
    '+pickup_location' => { is_boolean => 1 },
925
    '+pickup_location' => { is_boolean => 1 },
(-)a/Koha/Schema/Result/Category.pm (-3 / +17 lines)
Lines 287-292 __PACKAGE__->set_primary_key("categorycode"); Link Here
287
287
288
=head1 RELATIONS
288
=head1 RELATIONS
289
289
290
=head2 auth_provider_domains
291
292
Type: has_many
293
294
Related object: L<Koha::Schema::Result::AuthProviderDomain>
295
296
=cut
297
298
__PACKAGE__->has_many(
299
  "auth_provider_domains",
300
  "Koha::Schema::Result::AuthProviderDomain",
301
  { "foreign.default_category_id" => "self.categorycode" },
302
  { cascade_copy => 0, cascade_delete => 0 },
303
);
304
290
=head2 borrower_attribute_types
305
=head2 borrower_attribute_types
291
306
292
Type: has_many
307
Type: has_many
Lines 363-370 __PACKAGE__->has_many( Link Here
363
);
378
);
364
379
365
380
366
# Created by DBIx::Class::Schema::Loader v0.07049 @ 2022-06-23 16:29:27
381
# Created by DBIx::Class::Schema::Loader v0.07049 @ 2022-08-16 23:14:56
367
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:SKWF2QpqQtXoujwurKFQhA
382
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:OLnB+kXFSOl8HRWcY3ep3w
368
383
369
sub koha_object_class {
384
sub koha_object_class {
370
    'Koha::Patron::Category';
385
    'Koha::Patron::Category';
371
- 

Return to bug 31378