-- 009_band_locations_bigint.sql -- bands.ma_id est BIGINT (valeurs jusqu'à ~3.5e9 côté crawler), mais -- band_locations.ma_id avait été créé en INTEGER (008). Tout INSERT pour un -- band avec ma_id > 2147483647 échouait en "integer out of range" — l'erreur -- était avalée silencieusement par l'enqueue, laissant ~62k bands hors pipeline. -- On aligne le type sur bands.ma_id. ALTER TABLE band_locations ALTER COLUMN ma_id TYPE BIGINT;