Important Changes
Database
SCR-1502
Summary: Add table for mfa enforcement
In order to implement the possibility to enforce multi-factor, a database table called multifactor_enforcement needs to be created to store the relevant informations.
CREATE TABLE `multifactor_enforcement`(
`cid` int(10) unsigned NOT NULL,
`id` int(10) unsigned NOT NULL,
`enforceMfa` TINYINT(1) DEFAULT 0,
`loginCounter` int(10) DEFAULT 0,
`firstLogin` DATETIME DEFAULT NULL,
PRIMARY KEY (`cid`, `id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci"
Pre-Information - Support for Ingress NGINX will cease at the end of March
As mentioned in the blog post, upstream support for Ingress NGINX will cease at the end of March, and the project will be retired. Please note, our support for Ingress NGINX in OX App Suite v8 will also be discontinued at the same time.