All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.springframework.security.core.userdetails.jdbc.users.ddl Maven / Gradle / Ivy

There is a newer version: 6.2.4
Show newest version
create table users(username varchar_ignorecase(50) not null primary key,password varchar_ignorecase(500) not null,enabled boolean not null);
create table authorities (username varchar_ignorecase(50) not null,authority varchar_ignorecase(50) not null,constraint fk_authorities_users foreign key(username) references users(username));
create unique index ix_auth_username on authorities (username,authority);




© 2015 - 2024 Weber Informatics LLC | Privacy Policy