From 28b13e23bf46e7ea2b149c02af3c896900316447 Mon Sep 17 00:00:00 2001 From: Suyog Sonwalkar Date: Fri, 4 Jul 2025 10:20:46 -0700 Subject: [PATCH] Removing on delete set null from types since that is not supported in spanner Summary: Test Plan: --- src/types/common.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/types/common.ts b/src/types/common.ts index b2dc20d..b4ccf76 100644 --- a/src/types/common.ts +++ b/src/types/common.ts @@ -6,7 +6,7 @@ export type OnDeleteAction = | "cascade" | "restrict" | "no action" - | "set null" + // | "set null" // Not supported in Spanner | "set default"; export interface ForeignKeyConfig {