I have an application that I\'m using spring boot and postgres. I\'m getting this error when I try to create a user.
When I run this query on my database, I get the
It might be also caused missing default schema declaration in hibernate config.
default schema
Properties jpaProperties = new Properties(); .. jpaProperties.put("hibernate.default_schema", "my_default_schema"); entityManagerFactoryBean.setJpaProperties(jpaProperties);