35570-vm/db/migrate.php
Flatlogic Bot 9671081d9c 1
2025-11-08 12:20:22 +00:00

13 lines
322 B
PHP

<?php
require_once __DIR__ . '/config.php';
try {
$pdo = db();
$sql = file_get_contents(__DIR__ . '/migrations/001_initial_schema.sql');
$pdo->exec($sql);
echo "Database migration completed successfully.\n";
} catch (PDOException $e) {
die("Database migration failed: " . $e->getMessage() . "\n");
}