mirror of
https://github.com/clementine-player/Clementine
synced 2025-01-27 09:41:32 +01:00
8d3fd00956
Squashed commit of the following: commit 451a327fabb5f9aba077d93a33d75d8a6a288f5f Author: John Maguire <john.maguire@gmail.com> Date: Fri Mar 27 14:55:36 2015 +0100 Revert debug console changes. commit 52f643c3dc524a837f56268b6da4881187204165 Author: John Maguire <john.maguire@gmail.com> Date: Fri Mar 27 14:49:28 2015 +0100 Revert extra logging commit 23645f9fea4caa65d93c2a0a5ad5e2a164c3b535 Author: John Maguire <john.maguire@gmail.com> Date: Fri Mar 27 14:47:55 2015 +0100 How did you get there commit 8153388f19db17caf4286618922516b495a3f1d3 Author: John Maguire <john.maguire@gmail.com> Date: Fri Mar 27 14:45:12 2015 +0100 Update copyright headers. commit fa9e279259604a16564287291180b69cbb22d74f Author: John Maguire <john.maguire@gmail.com> Date: Fri Mar 27 14:43:27 2015 +0100 Remove logging commit 47a405543c8f6924adb60fbc34ec7360c608a9ec Author: John Maguire <john.maguire@gmail.com> Date: Fri Mar 27 14:42:05 2015 +0100 Show login state correctly for Amazon. commit 748d88d993fb56ecd97e14b8e7c7b6c49f11c410 Author: John Maguire <john.maguire@gmail.com> Date: Fri Mar 27 14:28:55 2015 +0100 Ensure Amazon is connected before serving URLs. commit 25ec9c65f4b0be4fc2df13cf941cf236f7cf6b46 Author: John Maguire <john.maguire@gmail.com> Date: Fri Mar 27 14:22:28 2015 +0100 Refresh Amazon authorisation & follow changes. commit 27c1a37173a76e04341b87abe2ada8438d6ee59f Author: John Maguire <john.maguire@gmail.com> Date: Thu Mar 26 18:27:27 2015 +0100 Revert unneeded OAuthenticator change. commit 3594af5be12d979762719010535db8f5aaec0905 Author: John Maguire <john.maguire@gmail.com> Date: Thu Mar 26 16:52:19 2015 +0100 Initial support for Amazon Cloud Drive.
51 lines
1.2 KiB
SQL
51 lines
1.2 KiB
SQL
CREATE TABLE amazon_cloud_drive_songs(
|
|
title TEXT,
|
|
album TEXT,
|
|
artist TEXT,
|
|
albumartist TEXT,
|
|
composer TEXT,
|
|
track INTEGER,
|
|
disc INTEGER,
|
|
bpm REAL,
|
|
year INTEGER,
|
|
genre TEXT,
|
|
comment TEXT,
|
|
compilation INTEGER,
|
|
|
|
length INTEGER,
|
|
bitrate INTEGER,
|
|
samplerate INTEGER,
|
|
|
|
directory INTEGER NOT NULL,
|
|
filename TEXT NOT NULL,
|
|
mtime INTEGER NOT NULL,
|
|
ctime INTEGER NOT NULL,
|
|
filesize INTEGER NOT NULL,
|
|
sampler INTEGER NOT NULL DEFAULT 0,
|
|
art_automatic TEXT,
|
|
art_manual TEXT,
|
|
filetype INTEGER NOT NULL DEFAULT 0,
|
|
playcount INTEGER NOT NULL DEFAULT 0,
|
|
lastplayed INTEGER,
|
|
rating INTEGER,
|
|
forced_compilation_on INTEGER NOT NULL DEFAULT 0,
|
|
forced_compilation_off INTEGER NOT NULL DEFAULT 0,
|
|
effective_compilation NOT NULL DEFAULT 0,
|
|
skipcount INTEGER NOT NULL DEFAULT 0,
|
|
score INTEGER NOT NULL DEFAULT 0,
|
|
beginning INTEGER NOT NULL DEFAULT 0,
|
|
cue_path TEXT,
|
|
unavailable INTEGER DEFAULT 0,
|
|
effective_albumartist TEXT,
|
|
etag TEXT,
|
|
performer TEXT,
|
|
grouping TEXT
|
|
);
|
|
|
|
CREATE VIRTUAL TABLE amazon_cloud_drive_songs_fts USING fts3 (
|
|
ftstitle, ftsalbum, ftsartist, ftsalbumartist, ftscomposer, ftsperformer, ftsgrouping, ftsgenre, ftscomment,
|
|
tokenize=unicode
|
|
);
|
|
|
|
UPDATE schema_version SET version=48;
|