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

(-)a/Koha/Schema/Result/Illrequest.pm (-3 / +16 lines)
Lines 47-52 Patron associated with request Link Here
47
47
48
Potential bib linked to request
48
Potential bib linked to request
49
49
50
=head2 due_date
51
52
  data_type: 'datetime'
53
  datetime_undef_if_invalid: 1
54
  is_nullable: 1
55
56
Custom date due specified by backend, leave NULL for default date_due calculation
57
50
=head2 branchcode
58
=head2 branchcode
51
59
52
  data_type: 'varchar'
60
  data_type: 'varchar'
Lines 180-185 __PACKAGE__->add_columns( Link Here
180
  { data_type => "integer", is_foreign_key => 1, is_nullable => 1 },
188
  { data_type => "integer", is_foreign_key => 1, is_nullable => 1 },
181
  "biblio_id",
189
  "biblio_id",
182
  { data_type => "integer", is_nullable => 1 },
190
  { data_type => "integer", is_nullable => 1 },
191
  "due_date",
192
  {
193
    data_type => "datetime",
194
    datetime_undef_if_invalid => 1,
195
    is_nullable => 1,
196
  },
183
  "branchcode",
197
  "branchcode",
184
  { data_type => "varchar", is_foreign_key => 1, is_nullable => 0, size => 50 },
198
  { data_type => "varchar", is_foreign_key => 1, is_nullable => 0, size => 50 },
185
  "status",
199
  "status",
Lines 317-324 __PACKAGE__->belongs_to( Link Here
317
);
331
);
318
332
319
333
320
# Created by DBIx::Class::Schema::Loader v0.07049 @ 2021-01-21 13:39:29
334
# Created by DBIx::Class::Schema::Loader v0.07049 @ 2022-06-23 18:44:13
321
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:ek47WcMZpSBpxUajJuEN+Q
335
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:on9OCRON/U0uR+m9aPIKPg
322
336
323
337
324
# You can replace this text with custom code or comments, and it will be preserved on regeneration
338
# You can replace this text with custom code or comments, and it will be preserved on regeneration
325
- 

Return to bug 24239