mirror of
https://github.com/Drop-OSS/drop.git
synced 2025-11-14 00:31:25 +10:00
6 lines
169 B
SQL
6 lines
169 B
SQL
-- DropIndex
|
|
DROP INDEX "public"."GameTag_name_idx";
|
|
|
|
-- CreateIndex
|
|
CREATE INDEX "GameTag_name_idx" ON "public"."GameTag" USING GIST ("name" gist_trgm_ops(siglen=32));
|