33856-vm/db/migrate.php
Flatlogic Bot db37d72aba v1
2025-09-09 11:36:20 +00:00

15 lines
323 B
PHP

<?php
// Simple migration script
require_once 'config.php';
try {
$pdo = db();
$sql = file_get_contents(__DIR__ . '/migrations/001_create_todos_table.sql');
$pdo->exec($sql);
echo "Migration applied successfully!\n";
} catch (PDOException $e) {
die("Migration failed: " . $e->getMessage() . "\n");
}