From 1c4e8e5be2d8d4d9d1cb056dddbdb14e25e5f819 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=D0=90=D0=BB=D0=B5=D0=BA=D1=81=D0=B0=D0=BD=D0=B4=D1=80=20?= =?UTF-8?q?=D0=97=D0=B8=D0=BC=D0=B8=D0=BD?= Date: Sun, 3 May 2026 20:33:21 +0300 Subject: [PATCH] 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). --- ordinis-app/src/main/resources/application.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ordinis-app/src/main/resources/application.yml b/ordinis-app/src/main/resources/application.yml index b43bef7..24acf7a 100644 --- a/ordinis-app/src/main/resources/application.yml +++ b/ordinis-app/src/main/resources/application.yml @@ -156,5 +156,5 @@ spring: compression.type: lz4 jpa: hibernate: - ddl-auto: validate + ddl-auto: none open-in-view: false