Preparar repositorio para despliegue: código fuente limpio

This commit is contained in:
jlimolina 2026-01-23 02:00:40 +01:00
parent 866f5c432d
commit 3eca832c1a
76 changed files with 5434 additions and 3496 deletions

5
init-db/10-indexes.sql Normal file
View file

@ -0,0 +1,5 @@
-- Optimización de índices
CREATE INDEX IF NOT EXISTS idx_noticias_pais ON noticias(pais_id);
CREATE INDEX IF NOT EXISTS idx_noticias_categoria ON noticias(categoria_id);
CREATE INDEX IF NOT EXISTS idx_traducciones_created_at ON traducciones(created_at);
CREATE INDEX IF NOT EXISTS idx_news_topics_topic_id ON news_topics(topic_id);