From 8a156f6ef0c216ecb7b1782910fc2cd5be6bcc31 Mon Sep 17 00:00:00 2001 From: Fabian Wolf Date: Wed, 14 Feb 2024 15:36:44 +0100 Subject: [PATCH] Release 7.28 --- include/inc.ilias_version.php | 4 ++-- setup/sql/ilDBTemplate.php | 7 +++++-- setup/sql/ilias3.sql | 13 +++++++------ 3 files changed, 14 insertions(+), 10 deletions(-) diff --git a/include/inc.ilias_version.php b/include/inc.ilias_version.php index 4273c51d9c6c..5477418ce4e1 100644 --- a/include/inc.ilias_version.php +++ b/include/inc.ilias_version.php @@ -9,5 +9,5 @@ * * @package ilias-core */ -define("ILIAS_VERSION", "7.27 2023-12-12"); -define("ILIAS_VERSION_NUMERIC", "7.27"); // since version ILIAS 6 this must be always x.y: x and y are numbers +define("ILIAS_VERSION", "7.28 2024-02-14"); +define("ILIAS_VERSION_NUMERIC", "7.28"); // since version ILIAS 6 this must be always x.y: x and y are numbers diff --git a/setup/sql/ilDBTemplate.php b/setup/sql/ilDBTemplate.php index 4f05fec4af6f..9e5b958d5e9e 100644 --- a/setup/sql/ilDBTemplate.php +++ b/setup/sql/ilDBTemplate.php @@ -47358,7 +47358,7 @@ function setupILIASDatabase() 'module' => array('text', 'common'), 'keyword' => array('text', 'db_hotfixes_5_3'), 'value' => array('clob', '18'))); $ilDB->insert("settings", array( -'module' => array('text', 'common'), 'keyword' => array('text', 'db_hotfixes_7'), 'value' => array('clob', '108'))); +'module' => array('text', 'common'), 'keyword' => array('text', 'db_hotfixes_7'), 'value' => array('clob', '110'))); $ilDB->insert("settings", array( 'module' => array('text', 'common'), 'keyword' => array('text', 'db_update_running'), 'value' => array('clob', '0'))); @@ -56621,7 +56621,7 @@ function setupILIASDatabase() ) ,"street" => array ( "notnull" => false - ,"length" => 40 + ,"length" => 512 ,"fixed" => false ,"type" => "text" ) @@ -58240,6 +58240,9 @@ function setupILIASDatabase() $in_fields = array("webr_id"); $ilDB->addIndex("webr_items", $in_fields, "i3", false); +$in_fields = array("webr_id","active"); +$ilDB->addIndex("webr_items", $in_fields, "i4", false); + $ilDB->createSequence("webr_items", 1); diff --git a/setup/sql/ilias3.sql b/setup/sql/ilias3.sql index c2d770bb70af..1f2b2401999e 100644 --- a/setup/sql/ilias3.sql +++ b/setup/sql/ilias3.sql @@ -1,8 +1,8 @@ --- MariaDB dump 10.19 Distrib 10.6.12-MariaDB, for debian-linux-gnu (x86_64) +-- MariaDB dump 10.19 Distrib 10.6.16-MariaDB, for debian-linux-gnu (x86_64) -- -- Host: localhost Database: ilias_release -- ------------------------------------------------------ --- Server version 10.6.12-MariaDB-0ubuntu0.22.04.1 +-- Server version 10.6.16-MariaDB-0ubuntu0.22.04.1 -- -- Table structure for table `acc_access_key` @@ -19941,7 +19941,7 @@ INSERT INTO `settings` VALUES ('common','dbupwarn_tos_migr_54x','1'); INSERT INTO `settings` VALUES ('common','dbupwarn_tstfixqstseq','1'); INSERT INTO `settings` VALUES ('common','dbup_tst_skl_thres_mig_done','1'); INSERT INTO `settings` VALUES ('common','db_hotfixes_5_3','18'); -INSERT INTO `settings` VALUES ('common','db_hotfixes_7','108'); +INSERT INTO `settings` VALUES ('common','db_hotfixes_7','110'); INSERT INTO `settings` VALUES ('common','db_update_running','0'); INSERT INTO `settings` VALUES ('common','db_version','5751'); INSERT INTO `settings` VALUES ('common','default_repository_view','flat'); @@ -23837,7 +23837,7 @@ CREATE TABLE `usr_data` ( `gender` char(1) DEFAULT 'm', `email` varchar(80) DEFAULT NULL, `institution` varchar(80) DEFAULT NULL, - `street` varchar(40) DEFAULT NULL, + `street` varchar(512) DEFAULT NULL, `city` varchar(40) DEFAULT NULL, `zipcode` varchar(10) DEFAULT NULL, `country` varchar(40) DEFAULT NULL, @@ -24455,7 +24455,8 @@ CREATE TABLE `webr_items` ( `internal` tinyint(4) DEFAULT NULL, PRIMARY KEY (`link_id`), KEY `i1_idx` (`link_id`,`webr_id`), - KEY `i3_idx` (`webr_id`) + KEY `i3_idx` (`webr_id`), + KEY `i4_idx` (`webr_id`,`active`) ) ; -- @@ -25050,4 +25051,4 @@ CREATE TABLE `xmlvalue_seq` ( --- Dump completed on 2023-12-12 18:09:02 +-- Dump completed on 2024-02-14 15:34:41