Column naming in flowable schema

Hi guys!

Just out of curioucity what is up with with last dash in column names ?
I.e. table ACT_HI_PRCINST column ID_ .
Everything works fine, just looks as if i’m missing something after last “_”.

Cheers!

Interesting :slight_smile:

That doesn’t align with any of the naming strategies?

For example:

# Configure Hibernate Naming Strategy (camelCase)
spring.jpa.hibernate.naming.physical-strategy=org.hibernate.boot.model.naming.PhysicalNamingStrategyStandardImpl

The reason is quite simple: to avoid name clashes with any potential keyword (now and in the future) of any of the databases that we support.

1 Like

Good to know.
Thank you!