I am trying to insert a record with a field of typ...
# orm-help
d
I am trying to insert a record with a field of type
Json
. One if the properties I try to insert is of type
Decimal
but seems the schema type
Json
doesnt accept that which I find strange since
Decimal
is a part of prisma. any other way?
r
Decimal is to be used with Prisma’s API. Json is a native database type and only accepts specific data types, so you would need to convert the
Decimal
type to a string or number.