feat: ( fayda ) add the fayda variables

This commit is contained in:
Abubeker Yasin
2026-05-27 11:31:44 +03:00
parent 4e500700ec
commit 78cf8e7cbb
4 changed files with 18 additions and 16 deletions

View File

@@ -1,12 +0,0 @@
/*
Warnings:
- A unique constraint covering the columns `[authCode]` on the table `FaydaVerificationSession` will be added. If there are existing duplicate values, this will fail.
*/
-- AlterTable
ALTER TABLE "FaydaVerificationSession" ADD COLUMN "authCode" TEXT,
ADD COLUMN "platform" TEXT NOT NULL DEFAULT 'WEB';
-- CreateIndex
CREATE UNIQUE INDEX "FaydaVerificationSession_authCode_key" ON "FaydaVerificationSession"("authCode");

View File

@@ -0,0 +1,3 @@
-- AlterTable
ALTER TABLE "FaydaVerificationSession" ADD COLUMN "authCode" TEXT,
ADD COLUMN "platform" TEXT NOT NULL DEFAULT 'WEB';

View File

@@ -1266,6 +1266,7 @@ model FaydaVerificationSession {
status String @default("PENDING")
errorCode String?
errorDescription String?
authCode String?
createdAt DateTime @default(now())
expiresAt DateTime
completedAt DateTime?