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

(-)a/Koha/Schema/Result/Itemtype.pm (-3 / +10 lines)
Lines 118-123 __PACKAGE__->table("itemtypes"); Link Here
118
  default_value: 0
118
  default_value: 0
119
  is_nullable: 0
119
  is_nullable: 0
120
120
121
=head2 updatenotforloanstatusoncheckin
122
123
  data_type: 'tinyint'
124
  default_value: 1
125
  is_nullable: 0
126
121
=head2 searchcategory
127
=head2 searchcategory
122
128
123
  data_type: 'varchar'
129
  data_type: 'varchar'
Lines 164-169 __PACKAGE__->add_columns( Link Here
164
  { data_type => "varchar", is_nullable => 1, size => 3 },
170
  { data_type => "varchar", is_nullable => 1, size => 3 },
165
  "hideinopac",
171
  "hideinopac",
166
  { data_type => "tinyint", default_value => 0, is_nullable => 0 },
172
  { data_type => "tinyint", default_value => 0, is_nullable => 0 },
173
  "updatenotforloanstatusoncheckin",
174
  { data_type => "tinyint", default_value => 1, is_nullable => 0 },
167
  "searchcategory",
175
  "searchcategory",
168
  { data_type => "varchar", is_nullable => 1, size => 80 },
176
  { data_type => "varchar", is_nullable => 1, size => 80 },
169
);
177
);
Lines 243-250 __PACKAGE__->has_many( Link Here
243
);
251
);
244
252
245
253
246
# Created by DBIx::Class::Schema::Loader v0.07046 @ 2020-03-09 17:13:18
254
# Created by DBIx::Class::Schema::Loader v0.07046 @ 2020-05-22 00:40:25
247
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:7ojvTzsDvdHPAJMwJrAZ7A
255
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:MMKDrRjepspT7oifFoMCIA
248
256
249
__PACKAGE__->add_columns(
257
__PACKAGE__->add_columns(
250
    '+rentalcharge_hourly_calendar' => { is_boolean => 1 },
258
    '+rentalcharge_hourly_calendar' => { is_boolean => 1 },
251
- 

Return to bug 25560