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

ilgrosso pushed a commit to branch 4_1_X
in repository https://gitbox.apache.org/repos/asf/syncope.git

commit 65c7145744034274213c8223712c3c56fa82e572
Author: Francesco Chicchiriccò <[email protected]>
AuthorDate: Wed Apr 15 10:39:01 2026 +0200

    Completing upgrade instructions for Oracle DBMS
---
 src/main/asciidoc/reference-guide/howto/upgrade.adoc | 14 ++++++++++++++
 1 file changed, 14 insertions(+)

diff --git a/src/main/asciidoc/reference-guide/howto/upgrade.adoc 
b/src/main/asciidoc/reference-guide/howto/upgrade.adoc
index d218377fd4..d7c2b8e4c3 100644
--- a/src/main/asciidoc/reference-guide/howto/upgrade.adoc
+++ b/src/main/asciidoc/reference-guide/howto/upgrade.adoc
@@ -110,6 +110,20 @@ assuming that:
  * you have an Oracle instance running on `localhost`, listening on its 
default port `1521` with a database
 `syncope` fully accessible by user `syncope` with password `syncope`
 
+[WARNING]
+====
+It is required to change the type of the `AUTHORITIES` column of the 
`ACCESSTOKEN` table.
+
+The simplest way to perform such operation is to run the following SQL 
statements:
+
+....
+DELETE FROM ACCESSTOKEN;
+ALTER TABLE ACCESSTOKEN MODIFY AUTHORITIES CLOB;
+....
+
+This will forcibly log out from all authenticated users.
+====
+
 ==== Finalization
 
 . shutdown the standalone process or the Jakarta EE container running Apache 
Syncope 4.0 Core, to ensure no changes

Reply via email to