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

(-)a/Koha/Schema/Result/ArticleRequest.pm (-1 lines)
Lines 260-265 __PACKAGE__->belongs_to( Link Here
260
# Created by DBIx::Class::Schema::Loader v0.07046 @ 2020-03-02 09:44:27
260
# Created by DBIx::Class::Schema::Loader v0.07046 @ 2020-03-02 09:44:27
261
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:Dhz1mVI7Z/6ibqaBZkPvUA
261
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:Dhz1mVI7Z/6ibqaBZkPvUA
262
262
263
264
# You can replace this text with custom code or comments, and it will be preserved on regeneration
263
# You can replace this text with custom code or comments, and it will be preserved on regeneration
265
1;
264
1;
(-)a/Koha/Schema/Result/Biblio.pm (+6 lines)
Lines 454-459 __PACKAGE__->has_many( Link Here
454
# Created by DBIx::Class::Schema::Loader v0.07046 @ 2020-04-17 09:15:51
454
# Created by DBIx::Class::Schema::Loader v0.07046 @ 2020-04-17 09:15:51
455
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:p2SIq565zPyE3ZUkSuXyBA
455
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:p2SIq565zPyE3ZUkSuXyBA
456
456
457
__PACKAGE__->has_many(
458
  "biblioitem",
459
  "Koha::Schema::Result::Biblioitem",
460
  { "foreign.biblionumber" => "self.biblionumber" },
461
  { cascade_copy => 0, cascade_delete => 0 },
462
);
457
463
458
__PACKAGE__->has_one(
464
__PACKAGE__->has_one(
459
  "metadata",
465
  "metadata",
(-)a/Koha/Schema/Result/Subscription.pm (-2 lines)
Lines 520-524 __PACKAGE__->add_columns( Link Here
520
    '+closed' => { is_boolean => 1 },
520
    '+closed' => { is_boolean => 1 },
521
);
521
);
522
522
523
# You can replace this text with custom content, and it will be preserved on regeneration
524
1;
523
1;
525
- 

Return to bug 20212