34146-vm/db/migrate.php
2025-09-17 12:48:49 +00:00

15 lines
391 B
PHP

<?php
$migrations_dir = __DIR__ . '/migrations';
$migration_files = glob($migrations_dir . '/*.php');
foreach ($migration_files as $file) {
require_once $file;
$function_name = 'migrate_' . basename($file, '.php');
if (function_exists($function_name)) {
$function_name();
} else {
echo "Migration function {$function_name} not found in {$file}.\n";
}
}