36534-vm/db/migrate.php
2025-12-01 12:08:52 +00:00

13 lines
309 B
PHP

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