Skip to content
Extraits de code Groupes Projets
Valider 397db002 rédigé par Kubat's avatar Kubat
Parcourir les fichiers

SQL: Reorder key words

parent 85fd926e
Aucune branche associée trouvée
Aucune étiquette associée trouvée
1 requête de fusion!113Moving queue_tmp to permanent table to fix the __queue_reorder crash
Pipeline #1867 réussi
......@@ -77,8 +77,8 @@ CREATE TABLE IF NOT EXISTS queue
, priority INTEGER NOT NULL DEFAULT 1 CHECK(priority > 0 AND priority < 6)
);
-- Temporary queue table used when reorderingg the queue (for inserts)
CREATE TEMPORARY TABLE queue_tmp IF NOT EXISTS
-- 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)
......
0% Chargement en cours ou .
You are about to add 0 people to the discussion. Proceed with caution.
Terminez d'abord l'édition de ce message.
Veuillez vous inscrire ou vous pour commenter