38527-vm/run_migration.php
Flatlogic Bot 099f307a09 Final V2
2026-02-17 19:15:53 +00:00

10 lines
261 B
PHP

<?php
require_once 'db/config.php';
try {
$sql = file_get_contents('db/migrations/20260217_unread_indicators.sql');
db()->exec($sql);
echo "Migration successful\n";
} catch (Exception $e) {
echo "Migration failed: " . $e->getMessage() . "\n";
}