We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
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
when creating a new schema, and it already exists, this is not an exception, since the desired outcome is already there.
Currently, this is emitted:
[ERROR] Failed to execute goal org.javalite:db-migrator-maven-plugin:3.4-SNAPSHOT:create (default-cli) on project embedded-tomcat-integration-test: Failed to create database: jdbc:mariadb://localhost:3309/javalite_tomcat: org.javalite.activejdbc.DBException: java.sql.SQLException: (conn=8) Can't create database 'javalite_tomcat'; database exists, query: create database javalite_tomcat -> [Help 1]
A better solution is to display a warning:
[WARNING] The schema jdbc:mariadb://localhost:3309/javalite_tomcat already exists.
The text was updated successfully, but these errors were encountered:
Note: this will require catching exceptions from all supported databases, maybe not worth the effort
Sorry, something went wrong.
ipolevoy
No branches or pull requests
Uh oh!
There was an error while loading. Please reload this page.
when creating a new schema, and it already exists, this is not an exception, since the desired outcome is already there.
Currently, this is emitted:
A better solution is to display a warning:
The text was updated successfully, but these errors were encountered: