Skip to content

Commit

Permalink
Release 7.26
Browse files Browse the repository at this point in the history
  • Loading branch information
fwolf-ilias committed Oct 23, 2023
1 parent 46051c8 commit 4e73c60
Show file tree
Hide file tree
Showing 3 changed files with 46 additions and 5 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.25 2023-09-12");
define("ILIAS_VERSION_NUMERIC", "7.25"); // since version ILIAS 6 this must be always x.y: x and y are numbers
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
28 changes: 27 additions & 1 deletion setup/sql/ilDBTemplate.php
Original file line number Diff line number Diff line change
Expand Up @@ -47346,7 +47346,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', '105')));
'module' => array('text', 'common'), 'keyword' => array('text', 'db_hotfixes_7'), 'value' => array('clob', '106')));

$ilDB->insert("settings", array(
'module' => array('text', 'common'), 'keyword' => array('text', 'db_update_running'), 'value' => array('clob', '0')));
Expand Down Expand Up @@ -56496,6 +56496,32 @@ function setupILIASDatabase()
$ilDB->createSequence("usr_account_codes", 1);


//
// usr_change_email_token
//
$fields = array (
"token" => array (
"notnull" => false
,"length" => 32
,"fixed" => false
,"type" => "text"
)
,"new_email" => array (
"notnull" => false
,"length" => 256
,"fixed" => false
,"type" => "text"
)
,"valid_until" => array (
"notnull" => false
,"length" => 8
,"unsigned" => false
,"type" => "integer"
)
);
$ilDB->createTable("usr_change_email_token", $fields);


//
// usr_cron_mail_reminder
//
Expand Down
19 changes: 17 additions & 2 deletions setup/sql/ilias3.sql
Original file line number Diff line number Diff line change
Expand Up @@ -19937,7 +19937,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','105');
INSERT INTO `settings` VALUES ('common','db_hotfixes_7','106');
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 @@ -23789,6 +23789,21 @@ CREATE TABLE `usr_account_codes_seq` (
--


--
-- Table structure for table `usr_change_email_token`
--

CREATE TABLE `usr_change_email_token` (
`token` varchar(32) DEFAULT NULL,
`new_email` varchar(256) DEFAULT NULL,
`valid_until` bigint(20) DEFAULT NULL
) ;

--
-- Dumping data for table `usr_change_email_token`
--


--
-- Table structure for table `usr_cron_mail_reminder`
--
Expand Down Expand Up @@ -25031,4 +25046,4 @@ CREATE TABLE `xmlvalue_seq` (



-- Dump completed on 2023-09-12 16:24:46
-- Dump completed on 2023-10-23 14:50:18

0 comments on commit 4e73c60

Please sign in to comment.