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

(-)a/Koha/Schema/Result/Issue.pm (-2 / +12 lines)
Lines 79-84 foreign key, linking to the branches table for the location the item was checked Link Here
79
79
80
date the item was returned, will be NULL until moved to old_issues
80
date the item was returned, will be NULL until moved to old_issues
81
81
82
=head2 checkin_library
83
84
  data_type: 'varchar'
85
  is_nullable: 1
86
  size: 10
87
88
foreign key, linking to the branches table for the location the item was returned
89
82
=head2 lastreneweddate
90
=head2 lastreneweddate
83
91
84
  data_type: 'datetime'
92
  data_type: 'datetime'
Lines 191-196 __PACKAGE__->add_columns( Link Here
191
    datetime_undef_if_invalid => 1,
199
    datetime_undef_if_invalid => 1,
192
    is_nullable => 1,
200
    is_nullable => 1,
193
  },
201
  },
202
  "checkin_library",
203
  { data_type => "varchar", is_nullable => 1, size => 10 },
194
  "lastreneweddate",
204
  "lastreneweddate",
195
  {
205
  {
196
    data_type => "datetime",
206
    data_type => "datetime",
Lines 326-333 __PACKAGE__->belongs_to( Link Here
326
);
336
);
327
337
328
338
329
# Created by DBIx::Class::Schema::Loader v0.07049 @ 2024-02-08 14:18:03
339
# Created by DBIx::Class::Schema::Loader v0.07051 @ 2024-11-14 12:42:06
330
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:7VMPEayWBRQ9ga7uhQGR4w
340
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:N/TBL2PwAVjy27c608cO0A
331
341
332
__PACKAGE__->add_columns(
342
__PACKAGE__->add_columns(
333
    '+auto_renew'      => { is_boolean => 1 },
343
    '+auto_renew'      => { is_boolean => 1 },
(-)a/Koha/Schema/Result/OldIssue.pm (-3 / +12 lines)
Lines 78-83 foreign key, linking to the branches table for the location the item was checked Link Here
78
78
79
date the item was returned
79
date the item was returned
80
80
81
=head2 checkin_library
82
83
  data_type: 'varchar'
84
  is_nullable: 1
85
  size: 10
86
87
foreign key, linking to the branches table for the location the item was returned
88
81
=head2 lastreneweddate
89
=head2 lastreneweddate
82
90
83
  data_type: 'datetime'
91
  data_type: 'datetime'
Lines 190-195 __PACKAGE__->add_columns( Link Here
190
    datetime_undef_if_invalid => 1,
198
    datetime_undef_if_invalid => 1,
191
    is_nullable => 1,
199
    is_nullable => 1,
192
  },
200
  },
201
  "checkin_library",
202
  { data_type => "varchar", is_nullable => 1, size => 10 },
193
  "lastreneweddate",
203
  "lastreneweddate",
194
  {
204
  {
195
    data_type => "datetime",
205
    data_type => "datetime",
Lines 321-328 __PACKAGE__->belongs_to( Link Here
321
);
331
);
322
332
323
333
324
# Created by DBIx::Class::Schema::Loader v0.07049 @ 2024-02-08 14:18:03
334
# Created by DBIx::Class::Schema::Loader v0.07051 @ 2024-11-14 12:42:06
325
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:Pp1/8rwY5N9NBkgNCagvow
335
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:i19ldvwvkMb0Gq2xhG5q+A
326
336
327
__PACKAGE__->add_columns(
337
__PACKAGE__->add_columns(
328
    '+auto_renew'      => { is_boolean => 1 },
338
    '+auto_renew'      => { is_boolean => 1 },
329
- 

Return to bug 33641