mirror of
https://github.com/ellite/Wallos.git
synced 2025-12-23 23:18:07 -05:00
13 lines
523 B
PHP
13 lines
523 B
PHP
<?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.
|
|
|
|
$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');
|
|
}
|
|
|
|
|
|
?>
|