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

(-)a/Koha/Schema/Result/Illrequest.pm (-3 / +11 lines)
Lines 48-53 Patron associated with request Link Here
48
48
49
Potential bib linked to request
49
Potential bib linked to request
50
50
51
=head2 deleted_biblio_id
52
53
  data_type: 'integer'
54
  is_nullable: 1
55
56
Deleted bib linked to request
57
51
=head2 due_date
58
=head2 due_date
52
59
53
  data_type: 'datetime'
60
  data_type: 'datetime'
Lines 189-194 __PACKAGE__->add_columns( Link Here
189
  { data_type => "integer", is_foreign_key => 1, is_nullable => 1 },
196
  { data_type => "integer", is_foreign_key => 1, is_nullable => 1 },
190
  "biblio_id",
197
  "biblio_id",
191
  { data_type => "integer", is_foreign_key => 1, is_nullable => 1 },
198
  { data_type => "integer", is_foreign_key => 1, is_nullable => 1 },
199
  "deleted_biblio_id",
200
  { data_type => "integer", is_nullable => 1 },
192
  "due_date",
201
  "due_date",
193
  {
202
  {
194
    data_type => "datetime",
203
    data_type => "datetime",
Lines 352-359 __PACKAGE__->belongs_to( Link Here
352
);
361
);
353
362
354
363
355
# Created by DBIx::Class::Schema::Loader v0.07049 @ 2023-05-05 12:10:10
364
# Created by DBIx::Class::Schema::Loader v0.07049 @ 2023-06-05 16:11:04
356
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:1VhNc8tMnvCpBYaj90YOiQ
365
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:6b58Mo/KzvheZCurYvKu7A
357
366
358
__PACKAGE__->has_many(
367
__PACKAGE__->has_many(
359
  "comments",
368
  "comments",
360
- 

Return to bug 21983