OzzyRMOzzyRMDocs
GlossaryTypes

Enum

A fixed set of allowed string values.

A fixed set of allowed string values.

Enums restrict a field to predefined values such as USER or ADMIN. They improve type safety and keep invalid states out of the database.

Example

Prisma
role Role @default(USER) // enum Role { USER ADMIN }

On this page