Files
silo-server/migrations/084_series_root_match_queue_available_at.down.sql
T

8 lines
306 B
SQL
Raw Normal View History

2026-05-22 20:26:11 -04:00
DROP INDEX IF EXISTS idx_series_root_match_queue_available;
CREATE INDEX IF NOT EXISTS idx_series_root_match_queue_attempt
ON series_root_match_queue (last_attempted_at ASC NULLS FIRST, media_folder_id, observed_root_path);
ALTER TABLE series_root_match_queue
DROP COLUMN IF EXISTS available_at;