Skip to content

Postgres Extensions

Ajay Ramachandran edited this page Mar 26, 2021 · 1 revision

You may need to install some postgres extensions.

Run these queries on the postgres database:

CREATE EXTENSION pgcrypto
    SCHEMA public;
CREATE EXTENSION pg_trgm
    SCHEMA public;
Clone this wiki locally