CIText in Postgres

The CIText column type in Postgres is a case insensitive text type. To convert a text column to CIText, execute an ALTER command. First, you will need to make sure the extension is installed:

CREATE EXTENSION IF NOT EXISTS citext;

ALTER TABLE student ALTER COLUMN email type citext;

Advertisement

Leave a Reply

Fill in your details below or click an icon to log in:

WordPress.com Logo

You are commenting using your WordPress.com account. Log Out /  Change )

Facebook photo

You are commenting using your Facebook account. Log Out /  Change )

Connecting to %s