OzzyRMOzzyRMDocs
GlossaryTypes

text

Unbounded or large text column, common in Drizzle and SQL.

Unbounded or large text column, common in Drizzle and SQL.

The text type is typically used for emails, descriptions, and content fields. It maps to TEXT in PostgreSQL.

Example

Prisma
email: text("email").notNull()

On this page