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:
parent
d6d6e6ed0a
commit
2822412908
1 changed files with 6 additions and 1 deletions
|
@ -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;
|
||||
|
|
Loading…
Reference in a new issue