RolloR
tRPC3y ago
6 replies
Rollo

TRPCClientError when creating a db entry without `updatedAt` value?

Guys, this is my prisma schema:
model User {
  id        Int      @id @default(autoincrement())
  firstName String?
  lastName  String?
  email     String   @unique
  phone     String?
  about     String?
  createdAt DateTime @default(now())
  updatedAt DateTime @updatedAt
}

Every time I try to create an entry, it fails because I didn't provide a value for updatedAt. How to fix?
TRPCClientError: 
Invalid `prisma.user.create()` invocation:
Null constraint violation on the fields: (`updatedAt`)

Thanks!

Using t3-app.
Solution
this is a prisma question not a trpc one. based on the error sounds like you need to provide a value for updatedAt
Was this page helpful?