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;