We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
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
The text was updated successfully, but these errors were encountered:
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.
Sorry, something went wrong.
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
Thanks, I have removed it.
No branches or pull requests
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
The text was updated successfully, but these errors were encountered: