spring-boot-oauth2-jwt-swagger-ui icon indicating copy to clipboard operation
spring-boot-oauth2-jwt-swagger-ui copied to clipboard

schema.sql have error

Open lfeiniao opened this issue 5 years ago • 3 comments

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

lfeiniao avatar Jan 18 '20 02:01 lfeiniao

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.

hendisantika avatar Sep 30 '20 00:09 hendisantika

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

hendisantika avatar Sep 30 '20 00:09 hendisantika

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.

rrohitramsen avatar Oct 23 '20 12:10 rrohitramsen