From b493135edfcfb4c079319e8bb17f6cbfaed74527 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Tom=C3=A1=C5=A1=20Kud=C4=9Blka?= Date: Sat, 17 May 2025 17:32:21 +0200 Subject: [PATCH] Adds auto schema update option Adds a configuration option to enable or disable automatic schema updates. This provides more control over database schema management, allowing users to manage schema updates manually if desired. --- src/DI/BackgroundQueueExtension.php | 1 + 1 file changed, 1 insertion(+) diff --git a/src/DI/BackgroundQueueExtension.php b/src/DI/BackgroundQueueExtension.php index 400be52..76cc1f2 100644 --- a/src/DI/BackgroundQueueExtension.php +++ b/src/DI/BackgroundQueueExtension.php @@ -47,6 +47,7 @@ public function getConfigSchema(): Schema 'onAfterProcess' => Expect::type('callable')->nullable(), 'onProcessingGetMetadata' => Expect::type('callable')->nullable(), 'parametersFormat' => Expect::string()->nullable(), + 'autoUpdateSchema' => Expect::bool(true)->required(), ]); }