OzzyRMOzzyRMDocs
GlossaryAttributes

required

The field must always have a value.

The field must always have a value.

Required fields cannot be null. In Prisma that means the field is not optional. In Drizzle that usually means .notNull() was applied.

Example

Prisma
title String // required by default in Prisma

On this page