35888-vm/db/migrate.php
2025-11-20 22:00:34 +00:00

13 lines
316 B
PHP

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