Bug 30650: DBIC specific

Note for QA - a false positive is raised by the QA tools:

"""
The new column curbside_pickup_opening_slots.day is using TINYINT(1) as
type but is not defined as boolean in the schema file
(Koha/Schema/Result/CurbsidePickupOpeningSlot.pm)
"""

=> It's not a boolean!

Sponsored-by: Association KohaLa - https://koha-fr.org/

Signed-off-by: Koha Team University Lyon 3 <koha@univ-lyon3.fr>

Signed-off-by: Katrin Fischer <katrin.fischer@bsz-bw.de>
Signed-off-by: Tomas Cohen Arazi <tomascohen@theke.io>
This commit is contained in:
Jonathan Druart 2022-05-10 08:34:05 +02:00 committed by Tomas Cohen Arazi
parent d6d6e6ed0a
commit 2822412908
Signed by: tomascohen
GPG key ID: 0A272EA1B2F3C15F

View file

@ -148,5 +148,10 @@ __PACKAGE__->has_many(
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:RyZGROB1+g3kb2bo6mwrUQ
# You can replace this text with custom code or comments, and it will be preserved on regeneration
__PACKAGE__->add_columns(
'+enabled' => { is_boolean => 1 },
'+enable_waiting_holds_only' => { is_boolean => 1 },
'+patron_scheduled_pickup' => { is_boolean => 1 },
);
1;