38443-vm/Temp/db_init.php
2026-03-15 00:47:59 +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";
}