35512-vm/run-migrations.php
Flatlogic Bot 1fa3995736 fix 13
2025-11-05 23:41:00 +00:00

16 lines
352 B
PHP

<?php
require_once 'db/config.php';
try {
$pdo = db();
$file = 'db/migrations/002_create_users_table.sql';
$sql = file_get_contents($file);
$pdo->exec($sql);
echo "Successfully ran migration: $file\n";
echo "All migrations ran successfully.\n";
} catch (PDOException $e) {
die("Database error: " . $e->getMessage());
}
?>