-- إضافة عمود alert_cooldown_minutes لجدول tenant_settings
ALTER TABLE tenant_settings 
ADD COLUMN IF NOT EXISTS alert_cooldown_minutes INT DEFAULT 15;

-- تحديث القيم الموجودة
UPDATE tenant_settings SET alert_cooldown_minutes = 15 WHERE alert_cooldown_minutes IS NULL;
