Auth client is not updating the Prisma user model.
my prisma user model model User { id String @id name String? surname String? username String @unique role UserRole @default(USER) email String emailVerified Boolean @default(false) image String? createdAt DateTime @default(now()) updatedAt DateTime @default(now()) @updatedAt sessions Session[] accounts Account[]