File tree Expand file tree Collapse file tree
src/main/asciidoc/reference-guide/howto Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -110,6 +110,20 @@ assuming that:
110110 * you have an Oracle instance running on `localhost`, listening on its default port `1521` with a database
111111`syncope` fully accessible by user `syncope` with password `syncope`
112112
113+ [WARNING]
114+ ====
115+ It is required to change the type of the `AUTHORITIES` column of the `ACCESSTOKEN` table.
116+
117+ The simplest way to perform such operation is to run the following SQL statements:
118+
119+ ....
120+ DELETE FROM ACCESSTOKEN;
121+ ALTER TABLE ACCESSTOKEN MODIFY AUTHORITIES CLOB;
122+ ....
123+
124+ This will forcibly log out from all authenticated users.
125+ ====
126+
113127==== Finalization
114128
115129. shutdown the standalone process or the Jakarta EE container running Apache Syncope 4.0 Core, to ensure no changes
You can’t perform that action at this time.
0 commit comments