35270-vm/db/migrate.php
Flatlogic Bot 90a64d2c57 version1
2025-10-27 04:21:59 +00:00

13 lines
304 B
PHP

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