But when I go to update an entry, it always tells ...
# prisma-client
n
But when I go to update an entry, it always tells me the next column in the schema is too long 🤔 i.e.
Copy code
prisma.bookmark.update({
  where: id,
  data: {
    image: imageBase64
  }
})
m
try this !
image                _String_                @db.LongText
n
Thanks for the recommendation! I ended up going with an image blob store (imagekit, similar to cloudinary) and just storing its reference 👍