OzzyRMOzzyRMDocs
GlossaryTypes

Int

32-bit integer, common in Prisma schemas.

32-bit integer, common in Prisma schemas.

Int represents a standard integer column. Use it for counts, foreign keys, and numeric flags when BigInt is not required.

Example

Prisma
viewCount Int @default(0)

On this page