Add the new "beginning" column to device tables too

This commit is contained in:
David Sansome 2010-12-28 22:53:10 +00:00
parent d1d0236385
commit aa6f55ee68
1 changed files with 2 additions and 1 deletions

View File

@ -48,7 +48,8 @@ CREATE TABLE device_%deviceid_songs (
effective_compilation NOT NULL DEFAULT 0,
skipcount INTEGER NOT NULL DEFAULT 0,
score INTEGER NOT NULL DEFAULT 0
score INTEGER NOT NULL DEFAULT 0,
beginning NOT NULL DEFAULT 0
);
CREATE INDEX idx_device_%deviceid_songs_album ON device_%deviceid_songs (album);