From 9f8ebd0dbbca59ae9aef4cea87651a9f1d28cf4a Mon Sep 17 00:00:00 2001 From: PxlLoewe <72106766+PxlLoewe@users.noreply.github.com> Date: Mon, 14 Jul 2025 14:30:42 -0700 Subject: [PATCH] country is optional --- packages/database/prisma/schema/heliports.prisma | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/database/prisma/schema/heliports.prisma b/packages/database/prisma/schema/heliports.prisma index 189f5456..c2b5b696 100644 --- a/packages/database/prisma/schema/heliports.prisma +++ b/packages/database/prisma/schema/heliports.prisma @@ -20,6 +20,6 @@ model Heliport { info String? lat Float lng Float - country String + country String? hospital String? }