From bf25922fc4ad5ad99bbf237c05828cff6f4d01db Mon Sep 17 00:00:00 2001 From: Jan Bader Date: Fri, 4 Feb 2022 15:46:17 +0000 Subject: [PATCH] Add fuzzy module --- postgres/schema/0014_enable-fuzzy-match-module.sql | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 postgres/schema/0014_enable-fuzzy-match-module.sql diff --git a/postgres/schema/0014_enable-fuzzy-match-module.sql b/postgres/schema/0014_enable-fuzzy-match-module.sql new file mode 100644 index 0000000..549373c --- /dev/null +++ b/postgres/schema/0014_enable-fuzzy-match-module.sql @@ -0,0 +1,5 @@ +-- +goose Up +CREATE EXTENSION IF NOT EXISTS "fuzzystrmatch"; + +-- +goose Down +DROP EXTENSION "fuzzystrmatch"; \ No newline at end of file