Files
Wallos/migrations/000036.php
Miguel Ribeiro e0f204803e feat!: simplified webhook notifications without iterator (might break your current webhook settings)
feat: use mobile style toggles instead of checkboxes
fix: barely readable placeholder text on textarea on dark the
feat: webhooks can now be used for cancelation notifications
2025-04-27 17:28:29 +02:00

20 lines
927 B
PHP

<?php
// This migration adds a new column to the webhook_notifications table to store the cancelation payload
// Also removes the iterator column as it is not used anymore.
// The cancelation payload will be used to send cancelation notifications to the webhook
/** @noinspection PhpUndefinedVariableInspection */
$columnQuery = $db->query("SELECT * FROM pragma_table_info('webhook_notifications') where name='cancelation_payload'");
$columnRequired = $columnQuery->fetchArray(SQLITE3_ASSOC) === false;
if ($columnRequired) {
$db->exec("ALTER TABLE webhook_notifications ADD COLUMN cancelation_payload TEXT DEFAULT ''");
}
$columnQuery = $db->query("SELECT * FROM pragma_table_info('webhook_notifications') where name='iterator'");
$columnRequired = $columnQuery->fetchArray(SQLITE3_ASSOC) !== false;
if ($columnRequired) {
$db->exec("ALTER TABLE webhook_notifications DROP COLUMN iterator");
}