36806-vm/db/init_db.php
Flatlogic Bot 5366b4681b CRM-V1
2025-12-11 07:55:09 +00:00

13 lines
308 B
PHP

<?php
require_once __DIR__ . '/config.php';
try {
$pdo = db();
$sql = file_get_contents(__DIR__ . '/database.sql');
$pdo->exec($sql);
echo "Database initialized successfully with 'leads' table.
";
} catch (PDOException $e) {
die("Database initialization failed: " . $e->getMessage());
}