Openstatus www.openstatus.dev
6
fork

Configure Feed

Select the types of activity you want to include in your feed.

fix: nullable (#522)

authored by

Maximilian Kaske and committed by
GitHub
8f5efd01 1ef64072

+4 -1
+4 -1
packages/db/src/schema/shared.ts
··· 34 34 .extend({ 35 35 monitors: z.array(selectPublicMonitorSchema), 36 36 statusReports: selectStatusReportPageSchema, 37 - workspacePlan: workspacePlanSchema.default("free"), 37 + workspacePlan: workspacePlanSchema 38 + .nullable() 39 + .default("free") 40 + .transform((val) => val ?? "free"), 38 41 }) 39 42 .omit({ 40 43 workspaceId: true,