Skip to content

Commit

Permalink
Release 7.28
Browse files Browse the repository at this point in the history
  • Loading branch information
fwolf-ilias committed Feb 14, 2024
1 parent 2a69560 commit 8a156f6
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 10 deletions.
4 changes: 2 additions & 2 deletions include/inc.ilias_version.php
Original file line number Diff line number Diff line change
Expand Up @@ -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
7 changes: 5 additions & 2 deletions setup/sql/ilDBTemplate.php
Original file line number Diff line number Diff line change
Expand Up @@ -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')));
Expand Down Expand Up @@ -56621,7 +56621,7 @@ function setupILIASDatabase()
)
,"street" => array (
"notnull" => false
,"length" => 40
,"length" => 512
,"fixed" => false
,"type" => "text"
)
Expand Down Expand Up @@ -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);


Expand Down
13 changes: 7 additions & 6 deletions setup/sql/ilias3.sql
Original file line number Diff line number Diff line change
@@ -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`
Expand Down Expand Up @@ -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');
Expand Down Expand Up @@ -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,
Expand Down Expand Up @@ -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`)
) ;

--
Expand Down Expand Up @@ -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

0 comments on commit 8a156f6

Please sign in to comment.