If you're developing a transactional application backed by postgres, there's a
pretty cool trick you can use to check if you're missing indexes that could
potentially cause serious performance issues or even outages. In particular, I
mean foreign keys where the referencing side of the constraint does not have an
index. The idea is very simple, we can select all of the columns that take part
in a foreign key, then remove the ones that take part in a complete index, and
the remainder should be the empty set, or possibly match a known allowlist. I
think this is a valuable addition to the test cases for your database
migrations, or if you can't easily do that, maybe in your CI/CD pipeline.