-- Quick fix to add missing image_url and link columns
-- Run this directly on your MySQL database if the columns are missing

ALTER TABLE notifications ADD COLUMN image_url TEXT NULL;
ALTER TABLE notifications ADD COLUMN link TEXT NULL;
