diff --git a/migrations/2024-02-16-064035_create_pg_trgm/down.sql b/migrations/2024-02-16-064035_create_pg_trgm/down.sql new file mode 100644 index 0000000..47fd365 --- /dev/null +++ b/migrations/2024-02-16-064035_create_pg_trgm/down.sql @@ -0,0 +1 @@ +DROP EXTENSION pg_trgm; diff --git a/migrations/2024-02-16-064035_create_pg_trgm/up.sql b/migrations/2024-02-16-064035_create_pg_trgm/up.sql new file mode 100644 index 0000000..d497121 --- /dev/null +++ b/migrations/2024-02-16-064035_create_pg_trgm/up.sql @@ -0,0 +1 @@ +CREATE EXTENSION pg_trgm;