This is an automated email from the ASF dual-hosted git repository. ilgrosso pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/syncope.git
commit e5b44e0d93c96b8729e570efe49e1e51b9e590c7 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
