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

(-)a/Koha/Schema/Result/Deleteditem.pm (+1 lines)
Lines 539-544 __PACKAGE__->set_primary_key("itemnumber"); Link Here
539
__PACKAGE__->add_columns(
539
__PACKAGE__->add_columns(
540
    '+bookable'                          => { is_boolean => 1 },
540
    '+bookable'                          => { is_boolean => 1 },
541
    '+exclude_from_local_holds_priority' => { is_boolean => 1 },
541
    '+exclude_from_local_holds_priority' => { is_boolean => 1 },
542
    '+is_closed_stack'                   => { is_boolean => 1 },
542
);
543
);
543
544
544
sub koha_objects_class {
545
sub koha_objects_class {
(-)a/Koha/Schema/Result/Item.pm (+1 lines)
Lines 1032-1037 __PACKAGE__->belongs_to( Link Here
1032
__PACKAGE__->add_columns(
1032
__PACKAGE__->add_columns(
1033
    '+bookable'                          => { is_boolean => 1 },
1033
    '+bookable'                          => { is_boolean => 1 },
1034
    '+exclude_from_local_holds_priority' => { is_boolean => 1 },
1034
    '+exclude_from_local_holds_priority' => { is_boolean => 1 },
1035
    '+is_closed_stack'                   => { is_boolean => 1 },
1035
);
1036
);
1036
1037
1037
# Relationship with orders via the aqorders_item table that not have foreign keys
1038
# Relationship with orders via the aqorders_item table that not have foreign keys
(-)a/Koha/Schema/Result/OldReserve.pm (-4 / +5 lines)
Lines 491-500 __PACKAGE__->belongs_to( Link Here
491
);
491
);
492
492
493
__PACKAGE__->add_columns(
493
__PACKAGE__->add_columns(
494
    '+item_level_hold' => { is_boolean => 1 },
494
    '+item_level_hold'                   => { is_boolean => 1 },
495
    '+lowestPriority'  => { is_boolean => 1 },
495
    '+lowestPriority'                    => { is_boolean => 1 },
496
    '+suspend'         => { is_boolean => 1 },
496
    '+suspend'                           => { is_boolean => 1 },
497
    '+non_priority'    => { is_boolean => 1 }
497
    '+non_priority'                      => { is_boolean => 1 },
498
    '+closed_stack_request_slip_printed' => { is_boolean => 1 },
498
);
499
);
499
500
500
sub koha_object_class {
501
sub koha_object_class {
(-)a/Koha/Schema/Result/Reserve.pm (-5 / +5 lines)
Lines 502-511 __PACKAGE__->belongs_to( Link Here
502
);
502
);
503
503
504
__PACKAGE__->add_columns(
504
__PACKAGE__->add_columns(
505
    '+item_level_hold' => { is_boolean => 1 },
505
    '+item_level_hold'                   => { is_boolean => 1 },
506
    '+lowestPriority'  => { is_boolean => 1 },
506
    '+lowestPriority'                    => { is_boolean => 1 },
507
    '+suspend'         => { is_boolean => 1 },
507
    '+suspend'                           => { is_boolean => 1 },
508
    '+non_priority'    => { is_boolean => 1 }
508
    '+non_priority'                      => { is_boolean => 1 },
509
    '+closed_stack_request_slip_printed' => { is_boolean => 1 },
509
);
510
);
510
511
511
sub koha_object_class {
512
sub koha_object_class {
512
- 

Return to bug 38666