exec($sql);
echo "Executed migration: " . basename($migration) . "
";
}
}
echo "All migrations executed successfully.
";
} catch (PDOException $e) {
header('HTTP/1.1 500 Internal Server Error');
die("Database migration failed: " . $e->getMessage());
}