Files
2026-07-17 02:23:59 +02:00

7 lines
178 B
SQL

-- AlterTable
ALTER TABLE "User" ADD COLUMN "apiKeyHash" TEXT,
ADD COLUMN "apiKeyPrefix" TEXT;
-- CreateIndex
CREATE UNIQUE INDEX "User_apiKeyHash_key" ON "User"("apiKeyHash");