Cómo habilitar la extensión en PostgreSQL
-- Enable the fuzzystrmatch extension
CREATE EXTENSION IF NOT EXISTS fuzzystrmatch;
-- Confirm that fuzzstrmatch has been enabled
SELECT extname FROM pg_extension;
Lux