10 lines
302 B
SQL
10 lines
302 B
SQL
/*
|
|
Warnings:
|
|
|
|
- Made the column `emailVerified` on table `users` required. This step will fail if there are existing NULL values in that column.
|
|
|
|
*/
|
|
-- AlterTable
|
|
ALTER TABLE "users" ADD COLUMN "settings_hide_lastname" BOOLEAN NOT NULL DEFAULT false,
|
|
ALTER COLUMN "emailVerified" SET NOT NULL;
|