cara mengaktifkan ekstensi di postgresql

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

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