feat: allow sorting payment methods (#217)
feat: don't allow to change currency code if in use
This commit is contained in:
@@ -0,0 +1,14 @@
|
||||
<?php
|
||||
// This migration adds a "order" column to the payment_methods table so that they can be sorted and initializes all values to their id.
|
||||
|
||||
/** @noinspection PhpUndefinedVariableInspection */
|
||||
$columnQuery = $db->query("SELECT * FROM pragma_table_info('payment_methods') WHERE name='order'");
|
||||
$columnRequired = $columnQuery->fetchArray(SQLITE3_ASSOC) === false;
|
||||
|
||||
if ($columnRequired) {
|
||||
$db->exec('ALTER TABLE payment_methods ADD COLUMN `order` INTEGER DEFAULT 0');
|
||||
$db->exec('UPDATE payment_methods SET `order` = id');
|
||||
}
|
||||
|
||||
|
||||
?>
|
||||
Reference in New Issue
Block a user