10 lines
261 B
PHP
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";
|
|
}
|