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