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
Hi, I'm following your course and I noticed that I got a lot of 'relation does not exist' errors.
This is because of the application.properties file. You entered the wrong dialect.
It currently is: spring.jpa.properties.hibernate.dialect=org.hibernate.dialect.PostgreSQLDialect which has been deprecated.
spring.jpa.properties.hibernate.dialect=org.hibernate.dialect.PostgreSQLDialect
while it should be: spring.jpa.properties.hibernate.dialect=org.hibernate.dialect.PostgreSQL95Dialect(if you use the latest version).
spring.jpa.properties.hibernate.dialect=org.hibernate.dialect.PostgreSQL95Dialect
See all dialects here, for more.
Steps to reproduce this error:
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Hi, I'm following your course and I noticed that I got a lot of 'relation does not exist' errors.
This is because of the application.properties file. You entered the wrong dialect.
It currently is:
spring.jpa.properties.hibernate.dialect=org.hibernate.dialect.PostgreSQLDialect
which has been deprecated.while it should be:
spring.jpa.properties.hibernate.dialect=org.hibernate.dialect.PostgreSQL95Dialect
(if you use the latest version).See all dialects here, for more.
Steps to reproduce this error:
The text was updated successfully, but these errors were encountered: