fix(app): switch hibernate ddl-auto to none in k8s profile

Hibernate validate mode threw 'wrong column type [supported_locales]:
found [_text (Types#ARRAY)] but expecting [text[] (Types#OTHER)]' against
the Liquibase-managed schema. This is a well-known hypersistence-utils +
PostgreSQL TEXT[] friction with Hibernate validate.

Schema is owned by Liquibase migrations; validate adds no safety here. Set
to 'none' (matches read-api and projection-writer).
This commit is contained in:
Александр Зимин
2026-05-03 20:33:21 +03:00
parent d49dd6be06
commit 1c4e8e5be2
@@ -156,5 +156,5 @@ spring:
compression.type: lz4
jpa:
hibernate:
ddl-auto: validate
ddl-auto: none
open-in-view: false