-- `chapters_manga_idx` over (manga_id, number) duplicates the implicit -- index Postgres maintains for the `UNIQUE (manga_id, number)` -- constraint from 0001 — same leading columns, same ordering, same -- selectivity. Dropping the explicit one saves a per-write index -- update without changing query plans. DROP INDEX IF EXISTS chapters_manga_idx;