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

(-)a/Koha/Schema/Result/Issue.pm (-5 / +4 lines)
Lines 87-93 date the item was returned, will be NULL until moved to old_issues Link Here
87
87
88
date the item was last renewed
88
date the item was last renewed
89
89
90
=head2 renewals
90
=head2 renewals_count
91
91
92
  data_type: 'tinyint'
92
  data_type: 'tinyint'
93
  default_value: 0
93
  default_value: 0
Lines 197-203 __PACKAGE__->add_columns( Link Here
197
    datetime_undef_if_invalid => 1,
197
    datetime_undef_if_invalid => 1,
198
    is_nullable => 1,
198
    is_nullable => 1,
199
  },
199
  },
200
  "renewals",
200
  "renewals_count",
201
  { data_type => "tinyint", default_value => 0, is_nullable => 0 },
201
  { data_type => "tinyint", default_value => 0, is_nullable => 0 },
202
  "unseen_renewals",
202
  "unseen_renewals",
203
  { data_type => "tinyint", default_value => 0, is_nullable => 0 },
203
  { data_type => "tinyint", default_value => 0, is_nullable => 0 },
Lines 321-328 __PACKAGE__->belongs_to( Link Here
321
);
321
);
322
322
323
323
324
# Created by DBIx::Class::Schema::Loader v0.07049 @ 2021-11-17 10:01:24
324
# Created by DBIx::Class::Schema::Loader v0.07049 @ 2022-03-11 15:10:14
325
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:kDcP8DNMT8sLUmzBFfz3fg
325
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:TERiBbm+B4jMEuNM2dVbfQ
326
326
327
__PACKAGE__->add_columns(
327
__PACKAGE__->add_columns(
328
    '+auto_renew'      => { is_boolean => 1 },
328
    '+auto_renew'      => { is_boolean => 1 },
329
- 

Return to bug 30275