spring-boot-oauth2-jwt-swagger-ui
spring-boot-oauth2-jwt-swagger-ui copied to clipboard
schema.sql have error
DROP TABLE IF EXISTS users; CREATE TABLE users ( user_id BIGINT PRIMARY KEY auto_increment, username VARCHAR(128) UNIQUE, password VARCHAR(256), enabled BOOL, );
after enabled BOOL,An extra comma
Yes. Let change it into like this:
DROP TABLE IF EXISTS users;
CREATE TABLE users (
user_id BIGINT PRIMARY KEY auto_increment,
username VARCHAR(128) UNIQUE,
password VARCHAR(256),
enabled BOOL,
);
after enabled BOOL,An extra comma
It's working fine.
Maybe @rrohitramsen is not maintain this repository anymore and quite busy.
I created new repo base on this with Spring Boot latest version.
Maybe We can discuss on my repo and help each other to run the repository.
If You don't mind we can discuss here https://github.com/hendisantika/springboot-oauth2-jwt-swagger-ui
Thank You
DROP TABLE IF EXISTS users; CREATE TABLE users ( user_id BIGINT PRIMARY KEY auto_increment, username VARCHAR(128) UNIQUE, password VARCHAR(256), enabled BOOL, );
after enabled BOOL,An extra comma
Thanks, I have removed it.