Check for column existence in migration
Allow migrations from bare installations
This commit is contained in:
@@ -3,5 +3,10 @@
|
||||
// It allows the user to disable payment methods without deleting them.
|
||||
|
||||
/** @noinspection PhpUndefinedVariableInspection */
|
||||
$db->exec('ALTER TABLE payment_methods ADD COLUMN enabled BOOLEAN DEFAULT 1');
|
||||
$db->exec('UPDATE payment_methods SET enabled = 1');
|
||||
$columnQuery = $db->query("SELECT * FROM pragma_table_info('payment_methods') where name='enabled'");
|
||||
$columnRequired = $columnQuery->fetchArray(SQLITE3_ASSOC) === false;
|
||||
|
||||
if ($columnRequired) {
|
||||
$db->exec('ALTER TABLE payment_methods ADD COLUMN enabled BOOLEAN DEFAULT 1');
|
||||
$db->exec('UPDATE payment_methods SET enabled = 1');
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user