mirror of
https://github.com/ellite/Wallos.git
synced 2025-12-23 23:18:07 -05:00
11 lines
372 B
PHP
11 lines
372 B
PHP
<?php
|
|
// This migration adds a URL column to the subscriptions table.
|
|
|
|
$columnQuery = $db->query("SELECT * FROM pragma_table_info('subscriptions') where name='url'");
|
|
$columnRequired = $columnQuery->fetchArray(SQLITE3_ASSOC) === false;
|
|
|
|
if ($columnRequired) {
|
|
$db->exec('ALTER TABLE subscriptions ADD COLUMN url VARCHAR(255);');
|
|
}
|
|
|
|
?>
|