OzzyRMOzzyRMDocs
GlossaryTypes

Uuid

Universally unique identifier stored as UUID.

Universally unique identifier stored as UUID.

UUID columns store 128-bit identifiers. They are useful for distributed systems where auto-increment IDs are not ideal.

Example

Prisma
id String @id @default(uuid()) @db.Uuid

On this page