fix pg db

This commit is contained in:
Morten Olsen
2025-08-11 14:35:15 +02:00
parent 47cf43b44e
commit ddb3c79657
3 changed files with 6 additions and 1 deletions

View File

@@ -9,6 +9,7 @@ const postgresDatabaseSecretSchema = z.object({
port: z.string(),
user: z.string(),
password: z.string(),
database: z.string().optional(),
});
const postgresDatabaseConnectionSecretSchema = z.object({