feat: add Prisma migration for EncryptID did column on User

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
Jeff Emmett 2026-02-13 07:45:33 -07:00
parent 36584014ae
commit 4c7cc616fe
1 changed files with 5 additions and 0 deletions

View File

@ -0,0 +1,5 @@
-- AlterTable
ALTER TABLE "User" ADD COLUMN "did" TEXT;
-- CreateIndex
CREATE UNIQUE INDEX "User_did_key" ON "User"("did");