34025-vm/db/migrate.php
Flatlogic Bot b86f18f85f v1
2025-09-11 21:39:07 +00:00

13 lines
344 B
PHP

<?php
require_once __DIR__ . '/config.php';
try {
$pdo = db();
$sql = file_get_contents(__DIR__ . '/migrations/001_create_chat_log_table.sql');
$pdo->exec($sql);
echo "Database migration successful! Table 'chat_log' is ready.\n";
} catch (PDOException $e) {
die("Database migration failed: " . $e->getMessage() . "\n");
}