#work #cheatsheet #postgresql
Grab the Postgres information from wherever you have it stored (IP, User, Pass) and run psql postgres://<user>:<password>@<ip>
Then, for each of the databases you want to enable citext on (for CF that’s diegodb
, uaadb
, and ccdb
), run:
\c <db name>
create extension citext;
\l
wow. isn’t that nice.