37722-vm/db/migrate.php
Flatlogic Bot 86c4280eed Gryyyyhh
2026-01-24 12:10:10 +00:00

12 lines
288 B
PHP

<?php
require_once __DIR__ . '/config.php';
try {
$pdo = db();
$sql = file_get_contents(__DIR__ . '/migrations/001_create_scripts_table.sql');
$pdo->exec($sql);
echo "Migration successful.";
} catch (PDOException $e) {
echo "Migration failed: " . $e->getMessage();
}