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

(-)a/Koha/Schema/Result/OldReserve.pm (-2 / +11 lines)
Lines 54-59 the date the hold was places Link Here
54
54
55
foreign key from the biblio table defining which bib record this hold is on
55
foreign key from the biblio table defining which bib record this hold is on
56
56
57
=head2 deleted_biblionumber
58
59
  data_type: 'integer'
60
  is_nullable: 1
61
62
links the reserve to the deleted bibliographic record (deletedbiblio.biblionumber)
63
57
=head2 item_group_id
64
=head2 item_group_id
58
65
59
  data_type: 'integer'
66
  data_type: 'integer'
Lines 235-240 __PACKAGE__->add_columns( Link Here
235
  { data_type => "date", datetime_undef_if_invalid => 1, is_nullable => 1 },
242
  { data_type => "date", datetime_undef_if_invalid => 1, is_nullable => 1 },
236
  "biblionumber",
243
  "biblionumber",
237
  { data_type => "integer", is_foreign_key => 1, is_nullable => 1 },
244
  { data_type => "integer", is_foreign_key => 1, is_nullable => 1 },
245
  "deleted_biblionumber",
246
  { data_type => "integer", is_nullable => 1 },
238
  "item_group_id",
247
  "item_group_id",
239
  { data_type => "integer", is_foreign_key => 1, is_nullable => 1 },
248
  { data_type => "integer", is_foreign_key => 1, is_nullable => 1 },
240
  "branchcode",
249
  "branchcode",
Lines 428-435 __PACKAGE__->belongs_to( Link Here
428
);
437
);
429
438
430
439
431
# Created by DBIx::Class::Schema::Loader v0.07049 @ 2024-04-05 06:44:57
440
# Created by DBIx::Class::Schema::Loader v0.07051 @ 2024-10-11 12:06:02
432
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:SQp2OEYb3im1x3A+W0h37w
441
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:w+/oG5TkE0jma5KH1OzJbw
433
442
434
__PACKAGE__->belongs_to(
443
__PACKAGE__->belongs_to(
435
  "item",
444
  "item",
(-)a/Koha/Schema/Result/Reserve.pm (-3 / +11 lines)
Lines 57-62 the date the hold was placed Link Here
57
57
58
foreign key from the biblio table defining which bib record this hold is on
58
foreign key from the biblio table defining which bib record this hold is on
59
59
60
=head2 deleted_biblionumber
61
62
  data_type: 'integer'
63
  is_nullable: 1
64
65
links the reserve to the deleted bibliographic record (deletedbiblio.biblionumber)
66
60
=head2 item_group_id
67
=head2 item_group_id
61
68
62
  data_type: 'integer'
69
  data_type: 'integer'
Lines 243-248 __PACKAGE__->add_columns( Link Here
243
    is_foreign_key => 1,
250
    is_foreign_key => 1,
244
    is_nullable    => 0,
251
    is_nullable    => 0,
245
  },
252
  },
253
  "deleted_biblionumber",
254
  { data_type => "integer", is_nullable => 1 },
246
  "item_group_id",
255
  "item_group_id",
247
  { data_type => "integer", is_foreign_key => 1, is_nullable => 1 },
256
  { data_type => "integer", is_foreign_key => 1, is_nullable => 1 },
248
  "branchcode",
257
  "branchcode",
Lines 456-463 __PACKAGE__->belongs_to( Link Here
456
);
465
);
457
466
458
467
459
# Created by DBIx::Class::Schema::Loader v0.07049 @ 2023-11-01 18:21:38
468
# Created by DBIx::Class::Schema::Loader v0.07051 @ 2024-10-11 12:06:02
460
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:6BAjuPSwjtyWJaJN9fcOtg
469
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:929EvBqGXvPVEmvsNMUGSQ
461
470
462
__PACKAGE__->belongs_to(
471
__PACKAGE__->belongs_to(
463
  "item",
472
  "item",
464
- 

Return to bug 30648