diff --git a/src/migrations/mysql/20251209091723_postgres-index-fix.sql b/src/migrations/mysql/20251209091723_postgres-index-fix.sql new file mode 100644 index 000000000..5c12d9e57 --- /dev/null +++ b/src/migrations/mysql/20251209091723_postgres-index-fix.sql @@ -0,0 +1 @@ +-- This migration is only a placeholder to keep migrations parallel diff --git a/src/migrations/postgres/20251209091723_postgres-index-fix.sql b/src/migrations/postgres/20251209091723_postgres-index-fix.sql new file mode 100644 index 000000000..02d242646 --- /dev/null +++ b/src/migrations/postgres/20251209091723_postgres-index-fix.sql @@ -0,0 +1,2 @@ +DROP INDEX IF EXISTS hash_hash_idx; +CREATE INDEX IF NOT EXISTS hash_hash_idx ON hash(hashtext(hash));