Not null removed

This commit is contained in:
Owen
2026-04-15 20:40:23 -07:00
parent 1397e61643
commit 1a1d1cfb83

View File

@@ -214,7 +214,7 @@ export const targetHealthCheck = sqliteTable("targetHealthCheck", {
orgId: text("orgId").references(() => orgs.orgId, {
onDelete: "cascade"
}),
name: text("name").notNull(),
name: text("name"),
hcEnabled: integer("hcEnabled", { mode: "boolean" })
.notNull()
.default(false),