From f9623b9ca253c0429a6867932697772ce392cd92 Mon Sep 17 00:00:00 2001 From: Hermes Agent Date: Wed, 27 May 2026 19:20:07 +0000 Subject: [PATCH] config(execute-service): enable auto-create tables in production Sets EXECUTE_DB_AUTO_CREATE_TABLES=true so the service creates its own tables on startup instead of relying on non-existent alembic migrations. --- .../trading-platform/configmaps/execute-service-config.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/apps/base/customer1/trading-platform/configmaps/execute-service-config.yaml b/apps/base/customer1/trading-platform/configmaps/execute-service-config.yaml index e62bbcf..6cf0497 100644 --- a/apps/base/customer1/trading-platform/configmaps/execute-service-config.yaml +++ b/apps/base/customer1/trading-platform/configmaps/execute-service-config.yaml @@ -11,3 +11,4 @@ data: EXECUTE_REDIS_PORT: "6379" KAFKA_BOOTSTRAP_SERVERS: "trading-kafka-kafka-bootstrap.customer1.svc.cluster.local:9092" EXECUTE_LOG_LEVEL: "info" + EXECUTE_DB_AUTO_CREATE_TABLES: "true"