feat(db): add slug column to games table

This commit is contained in:
2026-05-20 02:17:15 +08:00
parent e5f671a992
commit b835ac678f
4 changed files with 2453 additions and 0 deletions
+2
View File
@@ -0,0 +1,2 @@
ALTER TABLE "games" ADD COLUMN "slug" text;--> statement-breakpoint
ALTER TABLE "games" ADD CONSTRAINT "games_slug_unique" UNIQUE("slug");