Set the default to unknown

This commit is contained in:
Owen
2026-04-27 17:15:44 -07:00
parent 81a6fb8d00
commit f89b0a17ac
4 changed files with 4 additions and 4 deletions

View File

@@ -158,7 +158,7 @@ export const resources = pgTable("resources", {
maintenanceMessage: text("maintenanceMessage"),
maintenanceEstimatedTime: text("maintenanceEstimatedTime"),
postAuthPath: text("postAuthPath"),
health: varchar("health"), // "healthy", "unhealthy"
health: varchar("health").default("unknown"), // "healthy", "unhealthy", "unknown"
wildcard: boolean("wildcard").notNull().default(false)
});