-- CreateEnum CREATE TYPE "NotificationPreference" AS ENUM ('email', 'whatsapp', 'both'); -- AlterTable ALTER TABLE "User" ADD COLUMN "notificationPreference" "NotificationPreference" NOT NULL DEFAULT 'email';