chore(prisma): add githubUsername column and index for faster lookups

This commit is contained in:
Fatih Kadir Akın
2025-12-13 17:18:08 +03:00
parent 38dd65d708
commit bcbf3c99c2

View File

@@ -0,0 +1,5 @@
-- AlterTable
ALTER TABLE "users" ADD COLUMN "githubUsername" TEXT;
-- Add index for faster lookups
CREATE INDEX IF NOT EXISTS "users_githubUsername_idx" ON "users"("githubUsername");