Add catalog bootstrap endpoint, portrait thumbnail pipeline, lazy queued timeline images, gzip compression, and 3D texture throttling with code-split VirtualGallery.
5 lines
328 B
SQL
5 lines
328 B
SQL
-- Query performance for timeline filters and influence lookups
|
|
CREATE INDEX IF NOT EXISTS idx_artists_birth_year ON artists(birth_year);
|
|
CREATE INDEX IF NOT EXISTS idx_artists_death_year ON artists(death_year);
|
|
CREATE INDEX IF NOT EXISTS idx_influence_sources_source_painting ON painting_influence_sources(source_painting_id);
|