diff --git a/src/docbkx/appendix-db-schema.xml b/src/docbkx/appendix-db-schema.xml index d501aa5a06..148511c1a8 100644 --- a/src/docbkx/appendix-db-schema.xml +++ b/src/docbkx/appendix-db-schema.xml @@ -62,6 +62,10 @@ create table group_members (
Persistent Login (Remember-Me) Schema + This table is used to store data used by the more secure + persistent token remember-me implementation. + If you are using JdbcTokenRepositoryImpl either directly or through the namespace, + then you will need this table. create table persistent_logins ( username varchar(64) not null, @@ -75,7 +79,7 @@ create table persistent_logins (
ACL Schema - + The tables used by the Spring Security ACL implementation. create table acl_sid ( id bigint generated by default as identity(start with 100) not null primary key,