13 lines
309 B
PHP
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");
|
|
}
|
|
|