mirror of
https://github.com/documenso/documenso.git
synced 2025-11-12 07:43:16 +10:00
Add two factor authentication for users who wish to enhance the security of their accounts.
5 lines
182 B
SQL
5 lines
182 B
SQL
-- AlterTable
|
|
ALTER TABLE "User" ADD COLUMN "twoFactorBackupCodes" TEXT,
|
|
ADD COLUMN "twoFactorEnabled" BOOLEAN NOT NULL DEFAULT false,
|
|
ADD COLUMN "twoFactorSecret" TEXT;
|