From 927e0861917d2de2a8abbc339407ffae8966ff59 Mon Sep 17 00:00:00 2001 From: Tomas Cohen Arazi Date: Fri, 20 Oct 2023 19:12:26 -0300 Subject: [PATCH] Bug 31383: Fix kohastructure.sql Signed-off-by: Tomas Cohen Arazi --- installer/data/mysql/kohastructure.sql | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/installer/data/mysql/kohastructure.sql b/installer/data/mysql/kohastructure.sql index 30766f38f77..c99e69e2b7e 100644 --- a/installer/data/mysql/kohastructure.sql +++ b/installer/data/mysql/kohastructure.sql @@ -211,6 +211,13 @@ CREATE TABLE `additional_contents` ( ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; +-- +-- Table structure for table `additional_contents_localizations` +-- + +DROP TABLE IF EXISTS `additional_contents_localizations`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; CREATE TABLE `additional_contents_localizations` ( `id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT 'unique identifier for the additional content', `additional_content_id` int(10) unsigned NOT NULL COMMENT 'link to the additional content', -- 2.42.0