36146-vm/db/migrate.php
Flatlogic Bot 65d71ae74f v1
2025-11-23 19:41:44 +00:00

21 lines
440 B
PHP

<?php
require_once 'config.php';
try {
$pdo = db();
$migrations = glob(__DIR__ . '/migrations/*.sql');
sort($migrations);
foreach ($migrations as $migration) {
$sql = file_get_contents($migration);
$pdo->exec($sql);
echo "Executed migration: $migration\n";
}
echo "All migrations executed successfully.\n";
} catch (PDOException $e) {
die("Migration failed: " . $e->getMessage());
}