Apparently, at least as of Django 5.2, most async ORM methods are implemented as sync_to_async() wrappers around the synchronic methods. This means we get async support by default.
But we probably do need to take a pass over the new ORM methods and see if there's anything we need to add.