mirror of
https://github.com/clementine-player/Clementine
synced 2024-12-23 08:20:01 +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 commit23645f9fea
Author: John Maguire <john.maguire@gmail.com> Date: Fri Mar 27 14:47:55 2015 +0100 How did you get there commit8153388f19
Author: John Maguire <john.maguire@gmail.com> Date: Fri Mar 27 14:45:12 2015 +0100 Update copyright headers. commitfa9e279259
Author: John Maguire <john.maguire@gmail.com> Date: Fri Mar 27 14:43:27 2015 +0100 Remove logging commit47a405543c
Author: John Maguire <john.maguire@gmail.com> Date: Fri Mar 27 14:42:05 2015 +0100 Show login state correctly for Amazon. commit748d88d993
Author: John Maguire <john.maguire@gmail.com> Date: Fri Mar 27 14:28:55 2015 +0100 Ensure Amazon is connected before serving URLs. commit25ec9c65f4
Author: John Maguire <john.maguire@gmail.com> Date: Fri Mar 27 14:22:28 2015 +0100 Refresh Amazon authorisation & follow changes. commit27c1a37173
Author: John Maguire <john.maguire@gmail.com> Date: Thu Mar 26 18:27:27 2015 +0100 Revert unneeded OAuthenticator change. commit3594af5be1
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;
|