[autofix.ci] apply automated fixes

This commit is contained in:
autofix-ci[bot]
2026-04-04 15:27:30 +00:00
committed by GitHub
parent 0cb5ee49e0
commit 1cfc15ca0b
10 changed files with 30 additions and 55 deletions

View File

@@ -109,11 +109,9 @@ const createSchema = createInsertSchema(postgres, {
.max(63)
.regex(APP_NAME_REGEX, APP_NAME_MESSAGE)
.optional(),
databasePassword: z
.string()
.regex(DATABASE_PASSWORD_REGEX, {
message: DATABASE_PASSWORD_MESSAGE,
}),
databasePassword: z.string().regex(DATABASE_PASSWORD_REGEX, {
message: DATABASE_PASSWORD_MESSAGE,
}),
databaseName: z.string().min(1),
databaseUser: z.string().min(1),
dockerImage: z.string().default("postgres:18"),