38443-vm/db_init.php
Flatlogic Bot 2642f97c8b v1
2026-02-15 10:25:49 +00:00

11 lines
262 B
PHP

<?php
require_once 'db/config.php';
try {
$sql = file_get_contents('database/schema.sql');
db()->exec($sql);
echo "Database initialized successfully.\n";
} catch (Exception $e) {
echo "Error initializing database: " . $e->getMessage() . "\n";
}