38676-vm/db/add_fa_icon_to_factions.php
2026-02-22 10:20:30 +00:00

17 lines
504 B
PHP

<?php
require_once __DIR__ . '/config.php';
$db = db();
try {
$cols = $db->query("DESCRIBE factions")->fetchAll(PDO::FETCH_COLUMN);
if (!in_array('fa_icon', $cols)) {
$db->exec("ALTER TABLE factions ADD COLUMN fa_icon VARCHAR(50) NULL AFTER image_url");
echo "Column 'fa_icon' added to 'factions' table.\n";
} else {
echo "Column 'fa_icon' already exists in 'factions' table.\n";
}
} catch (PDOException $e) {
die("Migration failed: " . $e->getMessage());
}