-- Add send_duration column to notifications table
-- This column stores the duration in minutes over which to spread batch sending
-- 0 = all at once, 15 = 15 minutes, 30 = 30 minutes, 60 = 1 hour, 120 = 2 hours, 240 = 4 hours
ALTER TABLE notifications ADD COLUMN send_duration INTEGER DEFAULT 0;
