38960-vm/apply_migrations.php
2026-03-05 06:45:57 +00:00

19 lines
346 B
PHP

<?php
require 'db/config.php';
$db = db();
$files = glob('db/migrations/*.sql');
sort($files);
foreach ($files as $file) {
echo "Processing $file...\n";
$sql = file_get_contents($file);
try {
$db->exec($sql);
echo "Done.\n";
} catch (PDOException $e) {
echo "Error: " . $e->getMessage() . "\n";
}
}