Skip to content
Extraits de code Groupes Projets

Bug fixes & DL dependencies when specified

4 files
+ 17
20
Comparer les modifications
  • Côte à côte
  • En ligne

Fichiers

+ 0
7
@@ -77,13 +77,6 @@ CREATE TABLE IF NOT EXISTS queue
, priority INTEGER NOT NULL DEFAULT 1 CHECK(priority > 0 AND priority < 6)
);
-- Temporary queue table used when reordering the queue (for inserts)
CREATE TABLE IF NOT EXISTS queue_tmp
( position INTEGER PRIMARY KEY AUTOINCREMENT CHECK(position > 0)
, kara_id INTEGER
, priority INTEGER NOT NULL DEFAULT 1 CHECK(priority > 0 AND priority < 6)
);
-- The user table
-- Used for the [password {passwd}] MPD command. The documentation can be found
Chargement en cours