From bd852b30c38d3a8f3e7332bce7a318a76676f37f Mon Sep 17 00:00:00 2001 From: Khwezi Mngoma Date: Sat, 9 May 2026 13:27:54 +0200 Subject: [PATCH] Fixed quartz table name prefix --- LiteCharms.Extensions/Quartz.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/LiteCharms.Extensions/Quartz.cs b/LiteCharms.Extensions/Quartz.cs index ea71879..ec622e1 100644 --- a/LiteCharms.Extensions/Quartz.cs +++ b/LiteCharms.Extensions/Quartz.cs @@ -28,7 +28,7 @@ public static class Quartz storage.UseSystemTextJsonSerializer(); storage.SetProperty("quartz.jobStore.clustered", "true"); - storage.SetProperty("quartz.jobStore.tablePrefix", "quartz_"); + storage.SetProperty("quartz.jobStore.tablePrefix", "qrtz_"); storage.UsePostgres(connectionString!); storage.UseClustering(cluster =>