Integrate Inputs/PainterPalette.csv for artist metadata and influence links, add db/schema.sql with server/migrate.js, letterbox influence panel thumbnails, and refresh Titian/Pontormo images. Co-authored-by: Cursor <cursoragent@cursor.com>
7 lines
222 B
SQL
7 lines
222 B
SQL
-- PainterPalette.csv enrichment fields on artists
|
|
ALTER TABLE artists
|
|
ADD COLUMN IF NOT EXISTS palette_metadata JSONB;
|
|
|
|
CREATE INDEX IF NOT EXISTS artists_palette_metadata_idx
|
|
ON artists USING gin (palette_metadata);
|