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, }, });