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

(-)a/Koha/Schema/Result/Issue.pm (-4 / +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 },
(-)a/Koha/Schema/Result/OldIssue.pm (-5 / +4 lines)
Lines 86-92 date the item was returned Link Here
86
86
87
date the item was last renewed
87
date the item was last renewed
88
88
89
=head2 renewals
89
=head2 renewals_count
90
90
91
  data_type: 'tinyint'
91
  data_type: 'tinyint'
92
  default_value: 0
92
  default_value: 0
Lines 196-202 __PACKAGE__->add_columns( Link Here
196
    datetime_undef_if_invalid => 1,
196
    datetime_undef_if_invalid => 1,
197
    is_nullable => 1,
197
    is_nullable => 1,
198
  },
198
  },
199
  "renewals",
199
  "renewals_count",
200
  { data_type => "tinyint", default_value => 0, is_nullable => 0 },
200
  { data_type => "tinyint", default_value => 0, is_nullable => 0 },
201
  "unseen_renewals",
201
  "unseen_renewals",
202
  { data_type => "tinyint", default_value => 0, is_nullable => 0 },
202
  { data_type => "tinyint", default_value => 0, is_nullable => 0 },
Lines 306-313 __PACKAGE__->belongs_to( Link Here
306
);
306
);
307
307
308
308
309
# Created by DBIx::Class::Schema::Loader v0.07049 @ 2021-01-21 13:39:29
309
# Created by DBIx::Class::Schema::Loader v0.07049 @ 2022-03-18 12:35:21
310
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:BWwXBAuls9a0HhscR0WlGQ
310
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:0XlDHyg8uB3oD9/jJtOxRg
311
311
312
__PACKAGE__->add_columns(
312
__PACKAGE__->add_columns(
313
    '+auto_renew'      => { is_boolean => 1 },
313
    '+auto_renew'      => { is_boolean => 1 },
314
- 

Return to bug 30275