X-Git-Url: http://wagnertech.de/git?a=blobdiff_plain;f=dbinstall.php;h=a3cdd9cc58cdd210cd26f6f875e5919f5009935f;hb=cb50b63fc48f417f17c88cd104c41942f02d2080;hp=ea177e978bc8ea982293963175f81e02d26f20b6;hpb=906338007f1d45fe1ec40b19b1ff3106898a98fb;p=timetracker.git diff --git a/dbinstall.php b/dbinstall.php index ea177e97..a3cdd9cc 100644 --- a/dbinstall.php +++ b/dbinstall.php @@ -131,6 +131,11 @@ if ($request->isGet()) { } } + // Check is libxml is enabled (which is a PHP default). + if (!function_exists('libxml_clear_errors')) { + echo('Error: libxml is not enabled. It is required for import group operation (to parse XML).
'); + } + // Check database access. require_once('MDB2.php'); $conn = MDB2::connect(DSN); @@ -957,7 +962,7 @@ if ($_POST) { print "Updated $tt_expense_items_updated tt_expense_items records...
\n"; } - if ($_POST["convert11797to11834"]) { + if ($_POST["convert11797to11836"]) { ttExecute("ALTER TABLE `tt_fav_reports` CHANGE `group_by` `group_by1` varchar(20) default NULL"); ttExecute("ALTER TABLE `tt_fav_reports` ADD `group_by2` varchar(20) default NULL AFTER `group_by1`"); ttExecute("ALTER TABLE `tt_fav_reports` ADD `group_by3` varchar(20) default NULL AFTER `group_by2`"); @@ -1042,6 +1047,10 @@ if ($_POST) { ttExecute("update `tt_client_project_binds` cpb inner join `tt_site_config` sc on (sc.param_name = 'version_db' and sc.param_value = '1.18.26') inner join `tt_clients` c on c.id = cpb.client_id set cpb.group_id = c.group_id, cpb.org_id = c.org_id where cpb.org_id is null"); ttExecute("ALTER TABLE `tt_users` ADD COLUMN `quota_percent` float(6,2) default NULL after `rate`"); ttExecute("UPDATE `tt_site_config` SET param_value = '1.18.34', modified = now() where param_name = 'version_db' and param_value = '1.18.26'"); + ttExecute("update `tt_users` u inner join `tt_site_config` sc on (sc.param_name = 'version_db' and sc.param_value = '1.18.34') set u.quota_percent = 100.00 where u.quota_percent is null"); + ttExecute("UPDATE `tt_site_config` SET param_value = '1.18.36', modified = now() where param_name = 'version_db' and param_value = '1.18.34'"); + ttExecute("update `tt_users` u inner join `tt_site_config` sc on (sc.param_name = 'version_db' and sc.param_value = '1.18.36') set u.quota_percent = 100.00 where u.quota_percent is null"); + ttExecute("ALTER TABLE `tt_users` modify `quota_percent` float(6,2) NOT NULL default '100.00'"); } if ($_POST["cleanup"]) { @@ -1089,7 +1098,7 @@ if ($_POST) {

DB Install

-
Create database structure (v1.18.34) + Create database structure (v1.18.36)
(applies only to new installations, do not execute when updating)
@@ -1134,8 +1143,8 @@ if ($_POST) { - Update database structure (v1.17.97 to v1.18.34) - + Update database structure (v1.17.97 to v1.18.36) +