35583-vm/db/migrate.php
Flatlogic Bot 4708a2f224 1.1
2025-11-09 02:29:45 +00:00

13 lines
327 B
PHP

<?php
require_once __DIR__ . '/config.php';
try {
$pdo = db();
$sql = file_get_contents(__DIR__ . '/001_create_work_orders.sql');
$pdo->exec($sql);
echo "Database migration and seeding completed successfully.\n";
} catch (PDOException $e) {
die("Database migration failed: " . $e->getMessage() . "\n");
}