Update database-schema.adoc

docs: match the database schema with https://github.com/spring-projects/spring-security/blob/6.5.0/docs/modules/ROOT/pages/servlet/authentication/passwords/jdbc.adoc

Signed-off-by: Lidoca <32785562+Lidoca@users.noreply.github.com>
This commit is contained in:
Lidoca 2025-06-01 18:50:51 +09:00 committed by Rob Winch
parent aa3135169d
commit d0db5e3ea3

View File

@ -16,7 +16,7 @@ You can use these as a guideline for defining the schema for the database you us
create table users(
username varchar_ignorecase(50) not null primary key,
password varchar_ignorecase(50) not null,
password varchar_ignorecase(500) not null,
enabled boolean not null
);