Files
Wallos/migrations/000034.php
Miguel Ribeiro 87f148d174 feat: allow notifications on due date
fix: email notification test always sending to admins email
fix: don't expose disabled notifications to ical feed
2025-01-12 16:26:49 +01:00

4 lines
215 B
PHP

<?php
// This migration changes all the notify_days_before from 0 to -1 to to support the added "on the day" option
$db->exec('UPDATE subscriptions SET `notify_days_before` = -1 WHERE `notify_days_before` = 0');