Skip to content

Commit

Permalink
Release 7.27
Browse files Browse the repository at this point in the history
  • Loading branch information
fwolf-ilias committed Dec 12, 2023
1 parent 50133db commit 18f8f1f
Show file tree
Hide file tree
Showing 3 changed files with 24 additions and 8 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.26 2023-10-23");
define("ILIAS_VERSION_NUMERIC", "7.26"); // since version ILIAS 6 this must be always x.y: x and y are numbers
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
14 changes: 13 additions & 1 deletion setup/sql/ilDBTemplate.php
Original file line number Diff line number Diff line change
Expand Up @@ -15947,6 +15947,9 @@ function setupILIASDatabase()
$in_fields = array("obj_type");
$ilDB->addIndex("il_cert_template", $in_fields, "i4", false);

$in_fields = array("background_image_path","currently_active");
$ilDB->addIndex("il_cert_template", $in_fields, "i5", false);

$ilDB->createSequence("il_cert_template", 1);


Expand Down Expand Up @@ -16078,6 +16081,9 @@ function setupILIASDatabase()
$in_fields = array("user_id","obj_id","currently_active");
$ilDB->addIndex("il_cert_user_cert", $in_fields, "i6", false);

$in_fields = array("background_image_path","currently_active");
$ilDB->addIndex("il_cert_user_cert", $in_fields, "i7", false);

$ilDB->createSequence("il_cert_user_cert", 1);


Expand Down Expand Up @@ -25516,6 +25522,12 @@ function setupILIASDatabase()
$pk_fields = array("obj_id");
$ilDB->addPrimaryKey("loc_settings", $pk_fields);

$in_fields = array("itest");
$ilDB->addIndex("loc_settings", $in_fields, "i1", false);

$in_fields = array("qtest");
$ilDB->addIndex("loc_settings", $in_fields, "i2", false);


//
// loc_tst_assignments
Expand Down Expand Up @@ -47346,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', '106')));
'module' => array('text', 'common'), 'keyword' => array('text', 'db_hotfixes_7'), 'value' => array('clob', '108')));

$ilDB->insert("settings", array(
'module' => array('text', 'common'), 'keyword' => array('text', 'db_update_running'), 'value' => array('clob', '0')));
Expand Down
14 changes: 9 additions & 5 deletions setup/sql/ilias3.sql
Original file line number Diff line number Diff line change
Expand Up @@ -6907,7 +6907,8 @@ CREATE TABLE `il_cert_template` (
KEY `i1_idx` (`obj_id`),
KEY `i2_idx` (`obj_id`,`deleted`),
KEY `i3_idx` (`obj_id`,`currently_active`,`deleted`),
KEY `i4_idx` (`obj_type`)
KEY `i4_idx` (`obj_type`),
KEY `i5_idx` (`background_image_path`,`currently_active`)
) ;

--
Expand Down Expand Up @@ -6956,7 +6957,8 @@ CREATE TABLE `il_cert_user_cert` (
KEY `i3_idx` (`user_id`,`currently_active`,`acquired_timestamp`),
KEY `i4_idx` (`user_id`,`obj_type`,`currently_active`),
KEY `i5_idx` (`obj_id`,`currently_active`),
KEY `i6_idx` (`user_id`,`obj_id`,`currently_active`)
KEY `i6_idx` (`user_id`,`obj_id`,`currently_active`),
KEY `i7_idx` (`background_image_path`,`currently_active`)
) ;

--
Expand Down Expand Up @@ -11275,7 +11277,9 @@ CREATE TABLE `loc_settings` (
`it_start` tinyint(4) DEFAULT 1,
`qt_start` tinyint(4) DEFAULT 1,
`passed_obj_mode` tinyint(4) DEFAULT 1,
PRIMARY KEY (`obj_id`)
PRIMARY KEY (`obj_id`),
KEY `i1_idx` (`itest`),
KEY `i2_idx` (`qtest`)
) ;

--
Expand Down Expand Up @@ -19937,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','106');
INSERT INTO `settings` VALUES ('common','db_hotfixes_7','108');
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 @@ -25046,4 +25050,4 @@ CREATE TABLE `xmlvalue_seq` (



-- Dump completed on 2023-10-23 14:50:18
-- Dump completed on 2023-12-12 18:09:02

0 comments on commit 18f8f1f

Please sign in to comment.