From 0e5c5202a17b1bfbbc3983a46930ec5427c4801d Mon Sep 17 00:00:00 2001 From: Martin Renvoize Date: Fri, 11 Nov 2022 10:15:20 +0000 Subject: [PATCH 4/7] Bug 16223: (QA follow-up) Fix kohastructure bug --- installer/data/mysql/kohastructure.sql | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/installer/data/mysql/kohastructure.sql b/installer/data/mysql/kohastructure.sql index b132554f04..b80ec613ee 100644 --- a/installer/data/mysql/kohastructure.sql +++ b/installer/data/mysql/kohastructure.sql @@ -4970,7 +4970,7 @@ CREATE TABLE `restriction_types` ( `is_system` tinyint(1) NOT NULL DEFAULT 0, `is_default` tinyint(1) NOT NULL DEFAULT 0, `lift_after_payment` tinyint(1) NOT NULL DEFAULT 0, - `fee_limit` decimal(28,6) DEFAULT NULL + `fee_limit` decimal(28,6) DEFAULT NULL, PRIMARY KEY (`code`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- 2.34.1