For now, there's ~90% rows whose dictionary has a single `@context` key.
We should delete them.
When done, the following two queries should both return 0:
```
softwareheritage-indexer=> select count(*) from revision_intrinsic_metadata where mappings = array[]::text[];
count
--------
457464
(1 row)
softwareheritage-indexer=> select count(*) from origin_intrinsic_metadata where mappings = array[]::text[];
count
-------
0
(1 row)
```