/* Warnings: - Added the required column `country` to the `Partner` table without a default value. This is not possible if the table is not empty. - Added the required column `passwordHash` to the `Partner` table without a default value. This is not possible if the table is not empty. */ -- AlterTable ALTER TABLE "Partner" ADD COLUMN "companyInfo" JSONB, ADD COLUMN "country" TEXT NOT NULL, ADD COLUMN "keysRotatedAt" TIMESTAMP(3), ADD COLUMN "passwordHash" TEXT NOT NULL, ALTER COLUMN "status" SET DEFAULT 'PENDING'; -- CreateTable CREATE TABLE "AuthSession" ( "id" TEXT NOT NULL, "sessionId" TEXT NOT NULL, "partnerId" TEXT NOT NULL, "userId" TEXT, "msisdn" TEXT NOT NULL, "operator" TEXT NOT NULL, "country" TEXT NOT NULL, "authMethod" TEXT NOT NULL, "challengeId" TEXT, "status" TEXT NOT NULL, "expiresAt" TIMESTAMP(3) NOT NULL, "createdAt" TIMESTAMP(3) NOT NULL DEFAULT CURRENT_TIMESTAMP, "updatedAt" TIMESTAMP(3) NOT NULL, CONSTRAINT "AuthSession_pkey" PRIMARY KEY ("id") ); -- CreateIndex CREATE UNIQUE INDEX "AuthSession_sessionId_key" ON "AuthSession"("sessionId"); -- AddForeignKey ALTER TABLE "AuthSession" ADD CONSTRAINT "AuthSession_partnerId_fkey" FOREIGN KEY ("partnerId") REFERENCES "Partner"("id") ON DELETE RESTRICT ON UPDATE CASCADE;