Énumérez tous les index Postgres

select * from pg_indexes
where schemaname like '<schema-name>' and tablename like '<table-name>'
Lazy Lizard