Skip to content

Latest commit

 

History

History
16 lines (11 loc) · 567 Bytes

Web-Flow-1.3.0.md

File metadata and controls

16 lines (11 loc) · 567 Bytes

Migration from 1.2.0 to 1.3.0

Database Dialect Configuration

The latest release of PowerAuth requires configuration of database dialect.

The dialect is specified using following configuration property:

spring.jpa.database-platform=org.hibernate.dialect.PostgreSQL95Dialect

Use the most specific dialect, if possible, such as:

  • org.hibernate.dialect.Oracle12cDialect for Oracle 12c or higher
  • org.hibernate.dialect.PostgreSQL95Dialect for PostgreSQL 9.5 or higher

You can find additional database dialects in Hibernate documentation.