38676-vm/db/add_is_blinking_to_statuses.php
Flatlogic Bot 65093ca0b5 Alpha v1.1
2026-02-26 00:40:09 +00:00

12 lines
344 B
PHP

<?php
require_once __DIR__ . '/config.php';
try {
$db = db();
$db->exec("ALTER TABLE celestial_object_statuses ADD COLUMN is_blinking TINYINT(1) DEFAULT 0");
echo "Column 'is_blinking' added successfully to 'celestial_object_statuses'.\n";
} catch (PDOException $e) {
echo "Error adding column: " . $e->getMessage() . "\n";
}