From 26c548b1c58d2734e06647d1f8dc208835fe5ce6 Mon Sep 17 00:00:00 2001 From: Dev Sharma Date: Fri, 1 Nov 2024 22:23:22 +0530 Subject: [PATCH] fixed build --- prisma/schema.prisma | 7 ------- src/actions/hr.actions.ts | 1 + 2 files changed, 1 insertion(+), 7 deletions(-) diff --git a/prisma/schema.prisma b/prisma/schema.prisma index 52e6e348..3a126f38 100644 --- a/prisma/schema.prisma +++ b/prisma/schema.prisma @@ -159,13 +159,6 @@ model Project { isFeature Boolean @default(false) } -model Company { - id String @id @default(cuid()) - companyName String - companyLogo String? - companyBio String - user User? -} enum ProjectStack { GO diff --git a/src/actions/hr.actions.ts b/src/actions/hr.actions.ts index 6775b0f0..ba9a2e8d 100644 --- a/src/actions/hr.actions.ts +++ b/src/actions/hr.actions.ts @@ -47,6 +47,7 @@ export const createHR = withSession< companyName: companyName, companyBio: companyBio, companyLogo: companyLogo, + companyEmail: email, }, });