feat: version hiding

This commit is contained in:
DecDuck
2025-08-19 16:37:29 +10:00
parent 6d89b7e510
commit e63f701148
8 changed files with 78 additions and 69 deletions

View File

@ -0,0 +1,8 @@
-- DropIndex
DROP INDEX "GameTag_name_idx";
-- AlterTable
ALTER TABLE "GameVersion" ADD COLUMN "hidden" BOOLEAN NOT NULL DEFAULT false;
-- CreateIndex
CREATE INDEX "GameTag_name_idx" ON "GameTag" USING GIST ("name" gist_trgm_ops(siglen=32));