Files
Wallos/migrations/000003.php
2025-07-21 22:53:35 +02:00

10 lines
367 B
PHP

<?php
// This migration adds a "from_email" column to the notifications table.
$columnQuery = $db->query("SELECT * FROM pragma_table_info('notifications') where name='from_email'");
$columnRequired = $columnQuery->fetchArray(SQLITE3_ASSOC) === false;
if ($columnRequired) {
$db->exec('ALTER TABLE notifications ADD COLUMN from_email VARCHAR(255);');
}