Connected to database successfully.
"; $sqlFile = __DIR__ . '/migrations/001_initial_schema.sql'; if (!file_exists($sqlFile)) { die("Migration file not found: $sqlFile
"); } $sql = file_get_contents($sqlFile); $pdo->exec($sql); echo "Database migration completed successfully!
"; } catch (PDOException $e) { die("Database operation failed: " . $e->getMessage() . "
"); }