From 2e796a36c64a0b3b149079bd99c9174fea8268d2 Mon Sep 17 00:00:00 2001 From: Michal Opler Date: Sun, 3 May 2015 15:12:07 +0200 Subject: [PATCH] Add lyrics field to device databases. Connecting and scanning of a new device failed due to the missing lyrics field. This fixes it. --- 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 2df96deb6..3ed4d21c0 100644 --- a/data/schema/device-schema.sql +++ b/data/schema/device-schema.sql @@ -58,7 +58,8 @@ CREATE TABLE device_%deviceid_songs ( etag TEXT, performer TEXT, - grouping TEXT + grouping TEXT, + lyrics TEXT ); CREATE INDEX idx_device_%deviceid_songs_album ON device_%deviceid_songs (album);