3d381944d2
Next.js + Express event management app for Hope Family Church.
6 lines
215 B
SQL
6 lines
215 B
SQL
-- CreateEnum
|
|
CREATE TYPE "NotificationPreference" AS ENUM ('email', 'whatsapp', 'both');
|
|
|
|
-- AlterTable
|
|
ALTER TABLE "User" ADD COLUMN "notificationPreference" "NotificationPreference" NOT NULL DEFAULT 'email';
|