Replace play_history with listening_events — one row per track exit, kind (complete/play/skip) plus raw position/duration — and add skip_count/last_skipped to audio_files beside play_count/last_played. The classifier that writes these lands later (plan 021); this is the schema it records into. Also drop the dead queue.source_playlist_id column and remove the stale references to the squashed migration chain in download_*.sql and tagging_items.sql, declaring the missing download-request indexes inline.
17 lines
659 B
SQL
17 lines
659 B
SQL
CREATE TABLE IF NOT EXISTS queue (
|
|
id INTEGER PRIMARY KEY CHECK(id = 1),
|
|
current_position INTEGER NOT NULL DEFAULT 0,
|
|
shuffle_mode BOOLEAN NOT NULL DEFAULT false,
|
|
repeat_mode TEXT NOT NULL DEFAULT 'off',
|
|
shuffle_order TEXT,
|
|
-- What the queue was built from ("Playing from: X"): an album,
|
|
-- playlist, smart playlist, genre or artist, identified by the id
|
|
-- that source_type's namespace gives it.
|
|
source_type TEXT NOT NULL DEFAULT '',
|
|
source_id INTEGER NOT NULL DEFAULT 0,
|
|
source_label TEXT NOT NULL DEFAULT ''
|
|
);
|
|
|
|
-- Singleton row: there is exactly one playback queue.
|
|
INSERT OR IGNORE INTO queue (id) VALUES (1);
|