exec(' CREATE TABLE IF NOT EXISTS teams ( id INT AUTO_INCREMENT PRIMARY KEY, name VARCHAR(255) NOT NULL UNIQUE, created_at TIMESTAMP DEFAULT CURRENT_TIMESTAMP ); '); echo "Migration 009 successful: Created teams table." . PHP_EOL; } catch (PDOException $e) { echo "Migration 009 failed: " . $e->getMessage() . PHP_EOL; } } migrate_009_create_teams_table();