12 lines
298 B
PHP
12 lines
298 B
PHP
<?php
|
|
require_once __DIR__ . '/config.php';
|
|
$db = db();
|
|
|
|
try {
|
|
$db->exec("ALTER TABLE factions ADD COLUMN is_playable TINYINT(1) DEFAULT 0");
|
|
echo "Column 'is_playable' added successfully to 'factions' table.\n";
|
|
} catch (PDOException $e) {
|
|
echo "Error: " . $e->getMessage() . "\n";
|
|
}
|
|
|