mirror of
https://github.com/Drop-OSS/drop.git
synced 2025-11-16 09:41:13 +10:00
9 lines
285 B
SQL
9 lines
285 B
SQL
-- DropIndex
|
|
DROP INDEX "public"."GameTag_name_idx";
|
|
|
|
-- AlterTable
|
|
ALTER TABLE "public"."Library" ADD COLUMN "mode" "public"."LibraryMode" NOT NULL DEFAULT 'Game';
|
|
|
|
-- CreateIndex
|
|
CREATE INDEX "GameTag_name_idx" ON "public"."GameTag" USING GIST ("name" gist_trgm_ops(siglen=32));
|