Код: Выделить всё
UPDATE phpbb_user_notifications
SET notify = 1
WHERE item_type = 'notification.type.pm' AND method = 'notification.method.email';
INSERT IGNORE INTO phpbb_user_notifications (item_type, item_id, user_id, method, notify)
SELECT 'notification.type.pm', 0, phpbb_users.user_id, 'notification.method.email', 1
FROM phpbb_users
WHERE phpbb_users.user_type <> 2;
phpbb_
заменить на своё.