-- AlterTable
ALTER TABLE `User` ADD COLUMN `emailNotifications` BOOLEAN NOT NULL DEFAULT true,
    ADD COLUMN `marketingEmails` BOOLEAN NOT NULL DEFAULT false,
    ADD COLUMN `pushNotifications` BOOLEAN NOT NULL DEFAULT true;
