mirror of
https://github.com/ellite/Wallos.git
synced 2025-12-23 23:18:07 -05:00
19 lines
874 B
PHP
19 lines
874 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
|
|
|
|
$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");
|
|
}
|