Supabase Authentication Flow
Use the Supabase Auth user with Prisma
model User {
id String @id @default(cuid())
name String?
email String? @unique
emailVerified DateTime?
image String?
accounts Account[]
sessions Session[]
UserPlan UserPlan?
}Last updated