from datetime import UTC, datetime def utc_now() -> datetime: """Return a naive UTC timestamp for existing DateTime columns.""" return datetime.now(UTC).replace(tzinfo=None)