Hi Community,
I was just about to setup a clean spring boot setup (Camunda 7.20.0, SpringBoot 3.1.6) and when I startup the application I get the exception that the create table ACT_GE_BYTEARRAY failed because of trying to create BYTES_ as blob. However the engine/src/main/resources/org/camunda/bpm/engine/db/create/activiti.postgres.create.case.engine.sql should have been executed.
The application.yaml for the db configuration is as follows:
spring:
jpa:
show-sql: false
properties:
hibernate:
dialect: org.hibernate.dialect.PostgreSQLDialect
datasource:
url: jdbc:h2:mem:testdb;MODE=PostgreSQL;DATABASE_TO_LOWER=TRUE;TRACE_LEVEL_SYSTEM_OUT=0;
If I change the dialect and mode to h2 everything works fine. But I used to work always with the Postgres mode. I have not investigated now since when this seems to happen.
Any ideas?
Thank you in advance
Ben