Files
2025-11-06 16:40:32 +03:00

10 lines
288 B
SQL

/*
Warnings:
- The `emailVerified` column on the `User` table would be dropped and recreated. This will lead to data loss if there is data in the column.
*/
-- AlterTable
ALTER TABLE "User" DROP COLUMN "emailVerified",
ADD COLUMN "emailVerified" BOOLEAN NOT NULL DEFAULT false;