apps/docs/content/docs.v6/orm/prisma-schema/postgresql-extensions.mdx
This page is about PostgreSQL extensions and explains how to use them with Prisma ORM.
:::warning
Between Prisma ORM v4.5.0 and v6.16.0, you could enable extensions in the Prisma schema via the postgresqlExtensions preview feature flag. This feature flag has been deprecated in v6.16.0 and the recommended approach for using PostgreSQL extensions now is to install them via customized migrations.
:::
PostgreSQL allows you to extend your database functionality by installing and activating packages known as extensions. For example, the citext extension adds a case-insensitive string data type. Some extensions, such as citext, are supplied directly by PostgreSQL, while other extensions are developed externally. For more information on extensions, see the PostgreSQL documentation.
To use an extension, it must first be installed on the local file system of your database server. You then need to activate the extension, which runs a script file that adds the new functionality.
Let's walk through an example of installing the citext extension.
Run the following command to create an empty migration that you can customize:
npx prisma migrate dev --create-only
In the new migration file that was created in the migrations directory, add the following statement:
CREATE EXTENSION IF NOT EXISTS citext;
Run the following command to deploy the migration and apply to your database:
npx prisma migrate deploy
You can now use the extension in your queries with Prisma Client. If the extension has special data types that currently can't be natively represented in the Prisma schema, you can still define fields of that type on your models using the Unsupported fallback type.