From aa6f55ee687930767a646f0c25bc82944a88157b Mon Sep 17 00:00:00 2001 From: David Sansome Date: Tue, 28 Dec 2010 22:53:10 +0000 Subject: [PATCH] Add the new "beginning" column to device tables too --- data/schema/device-schema.sql | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/data/schema/device-schema.sql b/data/schema/device-schema.sql index f157994c7..336783ae4 100644 --- a/data/schema/device-schema.sql +++ b/data/schema/device-schema.sql @@ -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);