35438-vm/db/migrate.php
2025-11-03 08:24:38 +00:00

14 lines
328 B
PHP

<?php
// Simple migration script
require_once __DIR__ . '/config.php';
try {
$pdo = db();
$sql = file_get_contents(__DIR__ . '/001_create_tables.sql');
$pdo->exec($sql);
echo "Database migration completed successfully.";
} catch (PDOException $e) {
die("Database migration failed: " . $e->getMessage());
}