38921-vm/db/setup.php
2026-03-01 22:44:18 +00:00

11 lines
264 B
PHP

<?php
require_once __DIR__ . '/config.php';
try {
$sql = file_get_contents(__DIR__ . '/migrations_001.sql');
db()->exec($sql);
echo "Database setup successful.";
} catch (PDOException $e) {
echo "Error setting up database: " . $e->getMessage();
}