Add url field to subscription
This commit is contained in:
@@ -0,0 +1,12 @@
|
||||
<?php
|
||||
// This migration adds a URL column to the subscriptions table.
|
||||
|
||||
/** @noinspection PhpUndefinedVariableInspection */
|
||||
$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);');
|
||||
}
|
||||
|
||||
?>
|
||||
Reference in New Issue
Block a user