36308-vm/db/migrate.php
2025-11-26 09:25:59 +00:00

13 lines
296 B
PHP

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