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
1 changed files with 2 additions and 1 deletions

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);