Comment activer l'extension dans PostgreSQL

-- Enable the fuzzystrmatch extension 
CREATE EXTENSION IF NOT EXISTS fuzzystrmatch;

-- Confirm that fuzzstrmatch has been enabled
SELECT extname FROM pg_extension;
Lux