mirror of
https://github.com/Drop-OSS/drop.git
synced 2025-11-23 13:11:10 +10:00
9 lines
213 B
SQL
9 lines
213 B
SQL
-- DropIndex
|
|
DROP INDEX "public"."GameTag_name_idx";
|
|
|
|
-- DropEnum
|
|
DROP TYPE "public"."Platform";
|
|
|
|
-- CreateIndex
|
|
CREATE INDEX "GameTag_name_idx" ON "public"."GameTag" USING GIST ("name" gist_trgm_ops(siglen=32));
|