1
0
mirror of https://github.com/clementine-player/Clementine synced 2024-12-18 12:28:31 +01:00

Add a missing column to device-schema

This commit is contained in:
David Sansome 2011-05-22 16:08:31 +00:00
parent e61a8c84cb
commit 1a38bebc88

View File

@ -51,7 +51,8 @@ CREATE TABLE device_%deviceid_songs (
score INTEGER NOT NULL DEFAULT 0,
beginning NOT NULL DEFAULT 0,
cue_path TEXT
cue_path TEXT,
unavailable INTEGER DEFAULT 0
);
CREATE INDEX idx_device_%deviceid_songs_album ON device_%deviceid_songs (album);