From 97a0f7dcfdcf4a5263c1cc6c19160a0868abb5f2 Mon Sep 17 00:00:00 2001 From: Simon Rettberg Date: Fri, 12 Dec 2014 18:28:38 +0100 Subject: Rework config module class structure. Still some TODOs though.... --- apis/update.inc.php | 13 +++++++++++++ 1 file changed, 13 insertions(+) (limited to 'apis') diff --git a/apis/update.inc.php b/apis/update.inc.php index 9c0cf740..878dc47f 100644 --- a/apis/update.inc.php +++ b/apis/update.inc.php @@ -185,3 +185,16 @@ function update_6() } return true; } + +// ####################### +// ##### 2014-12-12 +// Rename config modules, add "has changed" column to modules +function update_7() +{ + if (!tableHasColumn('configtgz_module', 'haschanged')) + Database::exec("ALTER TABLE configtgz_module ADD `haschanged` TINYINT DEFAULT '0'"); + Database::exec("UPDATE configtgz_module SET moduletype = 'Branding' WHERE moduletype = 'BRANDING'"); + Database::exec("UPDATE configtgz_module SET moduletype = 'AdAuth' WHERE moduletype = 'AD_AUTH'"); + Database::exec("UPDATE configtgz_module SET moduletype = 'CustomModule' WHERE moduletype = 'custom'"); + return true; +} -- cgit v1.2.3-55-g7522