eb315c90ff
When resuming migration, EventDate may be a string (from PostgreSQL queries) instead of a datetime.date object (from MySQL). The combine() function expects a datetime.date object, so we now convert strings to dates before combining with time. Added _convert_date() helper similar to _convert_time() that handles: - str: Parse from "YYYY-MM-DD" format - datetime.date: Return as-is - datetime.datetime: Extract date component Fixes error: "combine() argument 1 must be datetime.date, not str" 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Haiku 4.5 <noreply@anthropic.com>