Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

schema.sql have error #5

Open
lfeiniao opened this issue Jan 18, 2020 · 3 comments
Open

schema.sql have error #5

lfeiniao opened this issue Jan 18, 2020 · 3 comments

Comments

@lfeiniao
Copy link

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

@hendisantika
Copy link

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
Copy link

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

@rrohitramsen
Copy link
Owner

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.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

3 participants