Is there any way to explicitly declare int32 in schema in Prisma for MongoDB?
I did an introspection of a MongoDB from Prisma using the command 'prisma db pull'. This detected all number fields as integers (both long and int) and created the following entry in prisma.schema: Index Int // Here I search for…