From a024e2cfb1cce62cd7c29158a3b07c6a0bc18664 Mon Sep 17 00:00:00 2001 From: fser Date: Sat, 28 Jun 2014 12:29:04 +0200 Subject: [PATCH] quick fix to let the setup work --- install/upgrades/3.3.0~a.sql | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/install/upgrades/3.3.0~a.sql b/install/upgrades/3.3.0~a.sql index 5bed9c5d..caa6450e 100644 --- a/install/upgrades/3.3.0~a.sql +++ b/install/upgrades/3.3.0~a.sql @@ -1,6 +1,7 @@ ALTER TABLE variable DROP PRIMARY KEY; -ALTER TABLE variable ADD id bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT PRIMARY KEY FIRST; +# Quick-fix to make setup work again +# ALTER TABLE variable ADD id bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT PRIMARY KEY FIRST; ALTER TABLE variable ADD strata enum('DEFAULT','GLOBAL','FQDN', 'FQDN_CREATOR', 'CREATOR', 'MEMBER', 'DOMAIN') NOT NULL DEFAULT 'DEFAULT'; ALTER TABLE variable ADD strata_id bigint DEFAULT NULL; ALTER TABLE variable ADD type text DEFAULT '';