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

(-)a/Koha/Schema/Result/Itemtype.pm (-3 / +28 lines)
Lines 144-149 message that is displayed when an item with the given item type is checked in Link Here
144
144
145
type (CSS class) for the checkinmsg, can be 'alert' or 'message'
145
type (CSS class) for the checkinmsg, can be 'alert' or 'message'
146
146
147
=head2 checkoutmsg
148
149
  data_type: 'varchar'
150
  is_nullable: 1
151
  size: 255
152
153
message that is displayed when an item with the given item type is checked out
154
155
=head2 checkoutmsgtype
156
157
  data_type: 'char'
158
  default_value: 'message'
159
  is_nullable: 0
160
  size: 16
161
162
type (CSS class) for the checkoutmsg, can be 'alert' or 'message'
163
147
=head2 sip_media_type
164
=head2 sip_media_type
148
165
149
  data_type: 'varchar'
166
  data_type: 'varchar'
Lines 214-219 __PACKAGE__->add_columns( Link Here
214
    is_nullable => 0,
231
    is_nullable => 0,
215
    size => 16,
232
    size => 16,
216
  },
233
  },
234
  "checkoutmsg",
235
  { data_type => "varchar", is_nullable => 1, size => 255 },
236
  "checkoutmsgtype",
237
  {
238
    data_type => "char",
239
    default_value => "message",
240
    is_nullable => 0,
241
    size => 16,
242
  },
217
  "sip_media_type",
243
  "sip_media_type",
218
  { data_type => "varchar", is_nullable => 1, size => 3 },
244
  { data_type => "varchar", is_nullable => 1, size => 3 },
219
  "hideinopac",
245
  "hideinopac",
Lines 334-341 __PACKAGE__->has_many( Link Here
334
);
360
);
335
361
336
362
337
# Created by DBIx::Class::Schema::Loader v0.07051 @ 2024-05-08 14:38:07
363
# Created by DBIx::Class::Schema::Loader v0.07051 @ 2024-08-06 18:50:35
338
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:9NChRQA4eBUqHpLXUFmOuw
364
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:mx7/xJ8dzCnInR2Dm+zTZw
339
365
340
__PACKAGE__->add_columns(
366
__PACKAGE__->add_columns(
341
    '+automatic_checkin'            => { is_boolean => 1 },
367
    '+automatic_checkin'            => { is_boolean => 1 },
342
- 

Return to bug 32485