35005-vm/db/setup.php
Flatlogic Bot 0e7e15ad6d v1
2025-10-16 12:24:26 +00:00

12 lines
301 B
PHP

<?php
require_once __DIR__ . '/config.php';
try {
$db = db();
$sql = file_get_contents(__DIR__ . '/migrations/001_initial_schema.sql');
$db->exec($sql);
echo "Database schema created successfully.";
} catch (PDOException $e) {
die("Database setup failed: " . $e->getMessage());
}