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

(-)a/Koha/Schema/Result/Itemtype.pm (-2 / +2 lines)
Lines 375-385 __PACKAGE__->has_many( Link Here
375
375
376
__PACKAGE__->add_columns(
376
__PACKAGE__->add_columns(
377
    '+automatic_checkin'            => { is_boolean => 1 },
377
    '+automatic_checkin'            => { is_boolean => 1 },
378
    '+bookable'                     => { is_boolean => 1, is_nullable => 1 },
378
    '+hideinopac'                   => { is_boolean => 1 },
379
    '+hideinopac'                   => { is_boolean => 1 },
379
    '+notforloan'                   => { is_boolean => 1 },
380
    '+notforloan'                   => { is_boolean => 1 },
380
    '+rentalcharge_daily_calendar'  => { is_boolean => 1 },
381
    '+rentalcharge_daily_calendar'  => { is_boolean => 1 },
381
    '+rentalcharge_hourly_calendar' => { is_boolean => 1 },
382
    '+rentalcharge_hourly_calendar' => { is_boolean => 1 },
382
    '+bookable'                     => { is_boolean => 1, is_nullable => 1 },
383
    '+sip_magnetic'                 => { is_boolean => 1 },
383
);
384
);
384
385
385
# Use the ItemtypeLocalization view to create the join on localization
386
# Use the ItemtypeLocalization view to create the join on localization
386
- 

Return to bug 41649