You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@isis.apache.org by ah...@apache.org on 2021/06/05 08:17:22 UTC

[isis] branch master updated: ISIS-2557: Secman: mignotes

This is an automated email from the ASF dual-hosted git repository.

ahuber pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/isis.git


The following commit(s) were added to refs/heads/master by this push:
     new 5375ba4  ISIS-2557: Secman: mignotes
5375ba4 is described below

commit 5375ba49bb8c343d32e2e603c7b570ebef840fc6
Author: andi-huber <ah...@apache.org>
AuthorDate: Sat Jun 5 10:17:02 2021 +0200

    ISIS-2557: Secman: mignotes
---
 .../modules/ROOT/pages/2021/2.0.0-M6/mignotes.adoc         | 14 +++++++++++++-
 1 file changed, 13 insertions(+), 1 deletion(-)

diff --git a/antora/components/relnotes/modules/ROOT/pages/2021/2.0.0-M6/mignotes.adoc b/antora/components/relnotes/modules/ROOT/pages/2021/2.0.0-M6/mignotes.adoc
index 8fc1e45..f29e0aa 100644
--- a/antora/components/relnotes/modules/ROOT/pages/2021/2.0.0-M6/mignotes.adoc
+++ b/antora/components/relnotes/modules/ROOT/pages/2021/2.0.0-M6/mignotes.adoc
@@ -119,5 +119,17 @@ Use the new User Manager View Model instead:
 <mb3:serviceAction objectType="isis.ext.secman.ApplicationUserMenu" id="userManager">
     <cpt:named>User Manager</cpt:named>
 </mb3:serviceAction>
-----                
+----      
+
+DB schema changes:
+
+[source,sql]
+.ApplicationUser 
+----
+-- mariadb/mysql syntax - adapt to your specific vendor, schema names omitted
+UPDATE ApplicationUser set `status`='UNLOCKED' where `status` like 'ENABLED';
+UPDATE ApplicationUser set `status`='LOCKED' where `status` like 'DISABLED';
+----
+
+          
                 
\ No newline at end of file