Add metadata_refresh_mode (manual/hourly/daily/weekly) to libraries, with automatic scheduling via the indexer. Includes API support, backoffice UI controls, i18n translations, and DB migration. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
5 lines
191 B
SQL
5 lines
191 B
SQL
ALTER TABLE libraries
|
|
ADD COLUMN metadata_refresh_mode TEXT NOT NULL DEFAULT 'manual',
|
|
ADD COLUMN last_metadata_refresh_at TIMESTAMPTZ,
|
|
ADD COLUMN next_metadata_refresh_at TIMESTAMPTZ;
|