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

(-)a/Koha/Schema/Result/AuthSubfieldStructure.pm (-2 / +2 lines)
Lines 222-229 __PACKAGE__->belongs_to( Link Here
222
222
223
__PACKAGE__->add_columns(
223
__PACKAGE__->add_columns(
224
    '+isurl'  => { is_boolean => 1 },
224
    '+isurl'  => { is_boolean => 1 },
225
    '+linkid' => { is_boolean => 1 },
225
    '+linkid' => { is_boolean => 0 },
226
    '+tab'    => { is_boolean => 1 },
226
    '+tab'    => { is_boolean => 0 },
227
);
227
);
228
228
229
=head2 koha_object_class
229
=head2 koha_object_class
(-)a/Koha/Schema/Result/Deleteditem.pm (-6 / +6 lines)
Lines 536-548 __PACKAGE__->set_primary_key("itemnumber"); Link Here
536
536
537
__PACKAGE__->add_columns(
537
__PACKAGE__->add_columns(
538
    '+bookable'                          => { is_boolean => 1 },
538
    '+bookable'                          => { is_boolean => 1 },
539
    '+damaged'                           => { is_boolean => 1 },
539
    '+damaged'                           => { is_boolean => 0 },
540
    '+exclude_from_local_holds_priority' => { is_boolean => 1 },
540
    '+exclude_from_local_holds_priority' => { is_boolean => 1 },
541
    '+itemlost'                          => { is_boolean => 1 },
541
    '+itemlost'                          => { is_boolean => 0 },
542
    '+notforloan'                        => { is_boolean => 1 },
542
    '+notforloan'                        => { is_boolean => 0 },
543
    '+restricted'                        => { is_boolean => 1 },
543
    '+restricted'                        => { is_boolean => 0 },
544
    '+stack'                             => { is_boolean => 1 },
544
    '+stack'                             => { is_boolean => 0 },
545
    '+withdrawn'                         => { is_boolean => 1 },
545
    '+withdrawn'                         => { is_boolean => 0 },
546
);
546
);
547
547
548
=head2 koha_objects_class
548
=head2 koha_objects_class
(-)a/Koha/Schema/Result/Item.pm (-6 / +6 lines)
Lines 1029-1041 __PACKAGE__->belongs_to( Link Here
1029
1029
1030
__PACKAGE__->add_columns(
1030
__PACKAGE__->add_columns(
1031
    '+bookable'                          => { is_boolean => 1 },
1031
    '+bookable'                          => { is_boolean => 1 },
1032
    '+damaged'                           => { is_boolean => 1 },
1032
    '+damaged'                           => { is_boolean => 0 },
1033
    '+exclude_from_local_holds_priority' => { is_boolean => 1 },
1033
    '+exclude_from_local_holds_priority' => { is_boolean => 1 },
1034
    '+itemlost'                          => { is_boolean => 1 },
1034
    '+itemlost'                          => { is_boolean => 0 },
1035
    '+notforloan'                        => { is_boolean => 1 },
1035
    '+notforloan'                        => { is_boolean => 0 },
1036
    '+restricted'                        => { is_boolean => 1 },
1036
    '+restricted'                        => { is_boolean => 0 },
1037
    '+stack'                             => { is_boolean => 1 },
1037
    '+stack'                             => { is_boolean => 0 },
1038
    '+withdrawn'                         => { is_boolean => 1 },
1038
    '+withdrawn'                         => { is_boolean => 0 },
1039
);
1039
);
1040
1040
1041
# Relationship with orders via the aqorders_item table that not have foreign keys
1041
# Relationship with orders via the aqorders_item table that not have foreign keys
(-)a/Koha/Schema/Result/MarcSubfieldStructure.pm (-2 / +2 lines)
Lines 234-242 __PACKAGE__->belongs_to( Link Here
234
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:KVbDXEVf96eDkbPYpcmQVA
234
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:KVbDXEVf96eDkbPYpcmQVA
235
235
236
__PACKAGE__->add_columns(
236
__PACKAGE__->add_columns(
237
    '+hidden' => { is_boolean => 1 },
237
    '+hidden' => { is_boolean => 0 },
238
    '+isurl'  => { is_boolean => 1 },
238
    '+isurl'  => { is_boolean => 1 },
239
    '+tab'    => { is_boolean => 1 },
239
    '+tab'    => { is_boolean => 0 },
240
);
240
);
241
241
242
1;
242
1;
(-)a/Koha/Schema/Result/Rating.pm (-2 / +1 lines)
Lines 122-128 __PACKAGE__->belongs_to( Link Here
122
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:wUwI/h1WR8kVGMNCrv/tUQ
122
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:wUwI/h1WR8kVGMNCrv/tUQ
123
123
124
__PACKAGE__->add_columns(
124
__PACKAGE__->add_columns(
125
    '+rating_value' => { is_boolean => 1 },
125
    '+rating_value' => { is_boolean => 0 },
126
);
126
);
127
127
128
1;
128
1;
129
- 

Return to bug 39835