From 0420519481874bce57877397ee45729c4c19909c Mon Sep 17 00:00:00 2001 From: Tomas Cohen Arazi Date: Wed, 11 Oct 2023 11:38:37 -0300 Subject: [PATCH] Bug 16223: Mark lift_after_payment as boolean in schema --- Koha/Schema/Result/RestrictionType.pm | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/Koha/Schema/Result/RestrictionType.pm b/Koha/Schema/Result/RestrictionType.pm index bb40be0058c..c42b78c510f 100644 --- a/Koha/Schema/Result/RestrictionType.pm +++ b/Koha/Schema/Result/RestrictionType.pm @@ -109,8 +109,9 @@ __PACKAGE__->has_many( # DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:sYJS1OhmHvr8hUFwaGBdjQ __PACKAGE__->add_columns( - '+is_system' => { is_boolean => 1 }, - '+is_default' => { is_boolean => 1 } + '+is_system' => { is_boolean => 1 }, + '+is_default' => { is_boolean => 1 }, + '+lift_after_payment' => { is_boolean => 1 }, ); sub koha_object_class { -- 2.42.0