From 03ea12b11dee1d733d8c1fc6c8a9c563c2159ad0 Mon Sep 17 00:00:00 2001 From: lesion Date: Mon, 14 Feb 2022 13:24:16 +0100 Subject: [PATCH] The provided value for the column is too long for the column's type. Column: image --- prisma/schema.prisma | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/prisma/schema.prisma b/prisma/schema.prisma index 5f9d10e..26a9fbc 100644 --- a/prisma/schema.prisma +++ b/prisma/schema.prisma @@ -23,7 +23,7 @@ model Post { content String? @db.Text summary String? @db.Text URL String @unique - image String? + image String? @db.VarChar(250) sourceId Int tags Tag[] source Source @relation(fields: [sourceId], references: [id])