exec('ALTER TABLE matches DROP COLUMN team_a, DROP COLUMN team_b;'); echo "Migration 008 successful: Dropped team_a and team_b from matches table." . PHP_EOL; } catch (PDOException $e) { echo "Migration 008 failed: " . $e->getMessage() . PHP_EOL; } } migrate_008_drop_teams_from_matches();