10 lines
288 B
SQL
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;
|