2 // +----------------------------------------------------------------------+
3 // | Anuko Time Tracker
4 // +----------------------------------------------------------------------+
5 // | Copyright (c) Anuko International Ltd. (https://www.anuko.com)
6 // +----------------------------------------------------------------------+
7 // | LIBERAL FREEWARE LICENSE: This source code document may be used
8 // | by anyone for any purpose, and freely redistributed alone or in
9 // | combination with other software, provided that the license is obeyed.
11 // | There are only two ways to violate the license:
13 // | 1. To redistribute this code in source form, with the copyright
14 // | notice or license removed or altered. (Distributing in compiled
15 // | forms without embedded copyright notices is permitted).
17 // | 2. To redistribute modified versions of this code in *any* form
18 // | that bears insufficient indications that the modifications are
19 // | not the work of the original author(s).
21 // | This license applies to this document only, not any other software
22 // | that it may be combined with.
24 // +----------------------------------------------------------------------+
26 // | https://www.anuko.com/time_tracker/credits.htm
27 // +----------------------------------------------------------------------+
29 require_once('WEB-INF/config.php');
30 require_once('WEB-INF/lib/common.lib.php');
31 require_once('initialize.php');
32 import('ttUserHelper');
33 import('ttTaskHelper');
34 import('ttRoleHelper');
36 // setChange - executes an sql statement. TODO: rename this function to something better.
37 // Better yet, redo the entire thing and make an installer.
38 function setChange($sql) {
39 print "<pre>".$sql."</pre>";
40 $mdb2 = getConnection();
41 $affected = $mdb2->exec($sql);
42 if (is_a($affected, 'PEAR_Error'))
43 print "error: ".$affected->getMessage()."<br>";
45 print "successful update<br>\n";
49 if ($request->isGet()) {
50 echo('<h2>Environment Checks</h2>');
52 // Check if WEB-INF/templates_c dir is writable.
53 if (is_writable(APP_DIR.'/WEB-INF/templates_c/')) {
54 echo('WEB-INF/templates_c/ directory is writable.<br>');
56 echo('<font color="red">Error: WEB-INF/templates_c/ directory is not writable.</font><br>');
59 // Require the configuration file with application settings.
60 if (file_exists(APP_DIR."/WEB-INF/config.php")) {
61 echo('WEB-INF/config.php file exists.<br>');
63 // Config file must start with the PHP opening tag. We are checking this because
64 // a Unicode editor may insert a byte order mark (BOM) before it. This is not good as it will
65 // spit white space before output in some situations such as in PDF reports.
66 $file = fopen(APP_DIR.'/WEB-INF/config.php', 'r');
68 if (strcmp("<?php\n", $line) !== 0 && strcmp("<?php\r\n", $line) !== 0) {
69 echo('<font color="red">Error: WEB-INF/config.php file does not start with PHP opening tag.</font><br>');
73 echo('<font color="red">Error: WEB-INF/config.php file does not exist.</font><br>');
76 // Check whether DSN is defined.
78 // echo('DSN is defined as '.DSN.'<br>');
79 echo('DSN is defined.<br>');
81 echo('<font color="red">Error: DSN value is not defined. Check your config.php file.</font><br>');
84 // Check if PHP version is good enough.
85 // $required_version = '5.2.1'; // Something in TCPDF library does not work below this one.
86 $required_version = '5.4.0'; // Week view (week.php) requires 5.4 because of []-way of referencing arrays.
87 // This needs further investigation as we use [] elsewhere without obvious problems.
88 if (version_compare(phpversion(), $required_version, '>=')) {
89 echo('PHP version: '.phpversion().', good enough.<br>');
91 echo('<font color="red">Error: PHP version is not high enough: '.phpversion().'. Required: '.$required_version.'.</font><br>');
94 // Depending on DSN, require either mysqli or mysql extensions.
95 if (strrpos(DSN, 'mysqli://', -strlen(DSN)) !== FALSE) {
96 if (extension_loaded('mysqli')) {
97 echo('mysqli PHP extension is loaded.<br>');
99 echo('<font color="red">Error: mysqli PHP extension is required but is not loaded.</font><br>');
102 if (strrpos(DSN, 'mysql://', -strlen(DSN)) !== FALSE) {
103 if (extension_loaded('mysql')) {
104 echo('mysql PHP extension is loaded.<br>');
106 echo('<font color="red">Error: mysql PHP extension is required but is not loaded.</font><br>');
110 // Check mbstring extension.
111 if (extension_loaded('mbstring')) {
112 echo('mbstring PHP extension is loaded.<br>');
114 echo('<font color="red">Error: mbstring PHP extension is not loaded.</font><br>');
117 // Check gd extension.
118 if (extension_loaded('gd')) {
119 echo('gd PHP extension is loaded.<br>');
121 echo('<font color="red">Error: gd PHP extension is not loaded. It is required for charts plugin.</font><br>');
124 // Check ldap extension.
125 if (AUTH_MODULE == 'ldap') {
126 if (extension_loaded('ldap_')) {
127 echo('ldap PHP extension is loaded.<br>');
129 echo('<font color="red">Error: ldap PHP extension is not loaded. It is required for LDAP authentication.</font><br>');
133 // Check database access.
134 require_once('MDB2.php');
135 $conn = MDB2::connect(DSN);
136 if (!is_a($conn, 'MDB2_Error')) {
137 echo('Connection to database successful.<br>');
139 die('<font color="red">Error: connection to database failed. '.$conn->getMessage().'</font><br>');
142 $conn->setOption('debug', true);
143 $conn->setFetchMode(MDB2_FETCHMODE_ASSOC);
145 $sql = "show tables";
146 $res = $conn->query($sql);
147 if (is_a($res, 'MDB2_Error')) {
148 die('<font color="red">Error: show tables returned an error. '.$res->getMessage().'</font><br>');
151 while ($val = $res->fetchRow()) {
155 echo("There are $tblCnt tables in database.<br>");
157 echo('<font color="red">There are no tables in database. Execute step 1 - Create database structure.</font><br>');
160 $sql = "select param_value from tt_site_config where param_name = 'version_db'";
161 $res = $conn->query($sql);
162 if (is_a($res, 'MDB2_Error')) {
163 echo('<font color="red">Error: database schema version query failed. '.$res->getMessage().'</font><br>');
165 $val = $res->fetchRow();
166 echo('Database version is: '.$val['param_value'].'.');
174 print "Processing...<br>\n";
176 if ($_POST["crstructure"]) {
177 $sqlQuery = join("\n", file("mysql.sql"));
178 $sqlQuery = str_replace("TYPE=MyISAM","",$sqlQuery);
179 $queries = explode(";",$sqlQuery);
180 if (is_array($queries)) {
181 foreach ($queries as $query) {
182 $query = trim($query);
183 if (strlen($query)>0) {
190 if ($_POST["convert5to7"]) {
191 setChange("alter table `activity_log` CHANGE al_comment al_comment text");
192 setChange("CREATE TABLE `sysconfig` (`sysc_id` int(11) unsigned NOT NULL auto_increment,`sysc_name` varchar(32) NOT NULL default '',`sysc_value` varchar(70) default NULL, PRIMARY KEY (`sysc_id`), UNIQUE KEY `sysc_id` (`sysc_id`), UNIQUE KEY `sysc_name` (`sysc_name`))");
193 setChange("alter table `companies` add c_locktime int(4) default -1");
194 setChange("alter table `activity_log` add al_billable tinyint(4) default 0");
195 setChange("alter table `sysconfig` drop INDEX `sysc_name`");
196 setChange("alter table `sysconfig` add sysc_id_u int(4)");
197 setChange("alter table `report_filter_set` add rfs_billable VARCHAR(10)");
198 setChange("ALTER TABLE clients MODIFY clnt_id int(11) NOT NULL AUTO_INCREMENT");
199 setChange("ALTER TABLE `users` ADD `u_show_pie` smallint(2) DEFAULT '1'");
200 setChange("alter table `users` ADD `u_pie_mode` smallint(2) DEFAULT '1'");
201 setChange("alter table users drop `u_aprojects`");
204 if ($_POST["convert7to133"]) {
205 setChange("ALTER TABLE users ADD COLUMN u_lang VARCHAR(20) DEFAULT NULL");
206 setChange("ALTER TABLE users ADD COLUMN u_email VARCHAR(100) DEFAULT NULL");
207 setChange("ALTER TABLE `activity_log` drop `al_proof`");
208 setChange("ALTER TABLE `activity_log` drop `al_charge`");
209 setChange("ALTER TABLE `activities` drop `a_project_id`");
210 setChange("DROP TABLE `activity_status_list`");
211 setChange("DROP TABLE `project_status_list`");
212 setChange("DROP TABLE `user_status_list`");
213 setChange("DROP TABLE `companies_c_id_seq`");
214 setChange("ALTER TABLE projects ADD COLUMN p_activities TEXT");
217 // The update_projects function updates p_activities field in the projects table so that we could
218 // improve performance of the application by using this field instead of activity_bind table.
219 if ($_POST["update_projects"]) {
220 $mdb2 = getConnection();
221 // $sql = "select p_id from projects where p_status = 1 and p_activities is NULL";
222 $sql = "select p_id from projects where p_status = 1";
223 $res = $mdb2->query($sql);
224 if (is_a($res, 'PEAR_Error')) {
225 die($res->getMessage());
227 // Iterate through projects.
228 while ($val = $res->fetchRow()) {
229 $project_id = $val['p_id'];
231 // Get activity binds for project (old way).
232 // $sql = "select ab_id_a from activity_bind where ab_id_p = $project_id";
233 $sql = "select ab_id_a, a_id, a_name from activity_bind
234 inner join activities on (ab_id_a = a_id)
235 where ab_id_p = $project_id order by a_name";
237 $result = $mdb2->query($sql);
238 if (is_a($result, 'PEAR_Error')) {
239 die($result->getMessage());
241 $activity_arr = array();
242 while ($value = $result->fetchRow()) {
243 $activity_arr[] = $value['ab_id_a'];
245 $a_comma_separated = implode(",", $activity_arr); // This is a comma-separated list of associated activity ids.
247 // Re-bind the project to activities (new way).
248 $sql = "update projects set p_activities = ".$mdb2->quote($a_comma_separated)." where p_id = $project_id";
249 $affected = $mdb2->exec($sql);
250 if (is_a($affected, 'PEAR_Error')) {
251 die($affected->getMessage());
256 if ($_POST["convert133to1340"]) {
257 setChange("ALTER TABLE companies ADD COLUMN c_show_pie smallint(2) DEFAULT 1");
258 setChange("ALTER TABLE companies ADD COLUMN c_pie_mode smallint(2) DEFAULT 1");
259 setChange("ALTER TABLE companies ADD COLUMN c_lang varchar(20) default NULL");
262 // The update_companies function sets up c_show_pie, c_pie_mode, and c_lang
263 // fields in the companies table from the corresponding manager fields.
264 if ($_POST["update_companies"]) {
265 $mdb2 = getConnection();
266 // Get all active managers.
267 $sql = "select u_company_id, u_show_pie, u_pie_mode, u_lang from users
268 where u_manager_id is NULL and u_login <> 'admin' and u_company_id is not NULL and u_active = 1";
269 $res = $mdb2->query($sql);
270 if (is_a($res, 'PEAR_Error')) {
271 die($res->getMessage());
273 // Iterate through managers and set fields in the companies table.
274 while ($val = $res->fetchRow()) {
275 $company_id = $val['u_company_id'];
276 $show_pie = $val['u_show_pie'];
277 $pie_mode = $val['u_pie_mode'];
278 $lang = $val['u_lang'];
280 $sql = "update companies set
281 c_show_pie = $show_pie, c_pie_mode = $pie_mode, c_lang = ".$mdb2->quote($lang).
282 " where c_id = $company_id";
284 $result = $mdb2->query($sql);
285 if (is_a($result, 'PEAR_Error')) {
286 die($result->getMessage());
291 if ($_POST["convert1340to1485"]) {
292 setChange("ALTER TABLE users DROP u_show_pie");
293 setChange("ALTER TABLE users DROP u_pie_mode");
294 setChange("ALTER TABLE users DROP u_lang");
295 setChange("ALTER TABLE `users` modify u_login varchar(100) NOT NULL");
296 setChange("ALTER TABLE `users` modify u_active smallint(6) default '1'");
297 setChange("drop index u_login_idx on users");
298 setChange("create unique index u_login_idx on users(u_login, u_active)");
299 setChange("ALTER TABLE companies MODIFY `c_lang` varchar(20) NOT NULL default 'en'");
300 setChange("ALTER TABLE companies ADD COLUMN `c_date_format` varchar(20) NOT NULL default '%Y-%m-%d'");
301 setChange("ALTER TABLE companies ADD COLUMN `c_time_format` varchar(20) NOT NULL default '%H:%M'");
302 setChange("ALTER TABLE companies ADD COLUMN `c_week_start` smallint(2) NOT NULL DEFAULT '0'");
303 setChange("ALTER TABLE clients MODIFY `clnt_status` smallint(6) default '1'");
304 setChange("create unique index clnt_name_idx on clients(clnt_id_um, clnt_name, clnt_status)");
305 setChange("ALTER TABLE projects modify p_status smallint(6) default '1'");
306 setChange("update projects set p_status = NULL where p_status = 1000");
307 setChange("drop index p_manager_idx on projects");
308 setChange("create unique index p_name_idx on projects(p_manager_id, p_name, p_status)");
309 setChange("ALTER TABLE activities modify a_status smallint(6) default '1'");
310 setChange("update activities set a_status = NULL where a_status = 1000");
311 setChange("drop index a_manager_idx on activities");
312 setChange("create unique index a_name_idx on activities(a_manager_id, a_name, a_status)");
313 setChange("RENAME TABLE companies TO teams");
314 setChange("RENAME TABLE teams TO att_teams");
315 setChange("ALTER TABLE att_teams CHANGE c_id id int(11) NOT NULL auto_increment");
316 setChange("RENAME TABLE users TO att_users");
317 setChange("update att_users set u_company_id = 0 where u_company_id is NULL");
318 setChange("ALTER TABLE att_users CHANGE u_company_id team_id int(11) NOT NULL");
319 setChange("RENAME TABLE att_teams TO tt_teams");
320 setChange("RENAME TABLE att_users TO tt_users");
321 setChange("ALTER TABLE tt_teams CHANGE c_name name varchar(80) NOT NULL");
322 setChange("ALTER TABLE `tt_teams` drop `c_www`");
323 setChange("ALTER TABLE `tt_teams` MODIFY `name` varchar(80) default NULL");
324 setChange("ALTER TABLE clients ADD COLUMN `your_name` varchar(255) default NULL");
325 setChange("ALTER TABLE tt_teams ADD COLUMN `address` varchar(255) default NULL");
326 setChange("ALTER TABLE invoice_header ADD COLUMN `client_name` varchar(255) default NULL");
327 setChange("ALTER TABLE invoice_header ADD COLUMN `client_addr` varchar(255) default NULL");
328 setChange("ALTER TABLE report_filter_set ADD COLUMN `rfs_cb_cost` tinyint(4) default '0'");
329 setChange("ALTER TABLE activity_log DROP primary key");
330 setChange("ALTER TABLE activity_log ADD COLUMN `id` bigint NOT NULL auto_increment primary key");
331 setChange("CREATE TABLE `tt_custom_fields` (`id` int(11) NOT NULL auto_increment, `team_id` int(11) NOT NULL, `type` tinyint(4) NOT NULL default '0', `label` varchar(32) NOT NULL default '', PRIMARY KEY (`id`))");
332 setChange("CREATE TABLE `tt_custom_field_options` (`id` int(11) NOT NULL auto_increment, `field_id` int(11) NOT NULL, `value` varchar(32) NOT NULL default '', PRIMARY KEY (`id`))");
333 setChange("CREATE TABLE `tt_custom_field_log` (`id` bigint NOT NULL auto_increment, `al_id` bigint NOT NULL, `field_id` int(11) NOT NULL, `value` varchar(255) default NULL, PRIMARY KEY (`id`))");
334 setChange("ALTER TABLE tt_users DROP u_level");
335 setChange("ALTER TABLE tt_custom_fields ADD COLUMN `status` tinyint(4) default '1'");
336 setChange("ALTER TABLE report_filter_set ADD COLUMN `rfs_cb_cf_1` tinyint(4) default '0'");
337 setChange("ALTER TABLE tt_teams ADD COLUMN `plugins` varchar(255) default NULL");
338 setChange("ALTER TABLE tt_teams MODIFY c_locktime int(4) default '0'");
339 setChange("ALTER TABLE clients DROP your_name");
340 setChange("ALTER TABLE clients DROP clnt_addr_your");
341 setChange("ALTER TABLE `tt_custom_fields` ADD COLUMN `required` tinyint(4) default '0'");
342 setChange("ALTER TABLE tt_teams DROP c_pie_mode");
343 setChange("RENAME TABLE report_filter_set TO tt_fav_reports");
344 setChange("ALTER TABLE tt_fav_reports CHANGE rfs_id id int(11) unsigned NOT NULL auto_increment");
345 setChange("ALTER TABLE tt_fav_reports CHANGE rfs_name name varchar(200) NOT NULL");
346 setChange("ALTER TABLE tt_fav_reports CHANGE rfs_id_u user_id int(11) NOT NULL");
347 setChange("ALTER TABLE tt_fav_reports CHANGE rfs_id_p project_id int(11) default NULL");
348 setChange("ALTER TABLE tt_fav_reports CHANGE rfs_id_a task_id int(11) default NULL");
349 setChange("ALTER TABLE tt_fav_reports CHANGE rfs_users users text default NULL");
350 setChange("ALTER TABLE tt_fav_reports CHANGE rfs_period period tinyint(4) default NULL");
351 setChange("ALTER TABLE tt_fav_reports CHANGE rfs_period_start period_start date default NULL");
352 setChange("ALTER TABLE tt_fav_reports CHANGE rfs_period_finish period_end date default NULL");
353 setChange("ALTER TABLE tt_fav_reports CHANGE rfs_cb_project show_project tinyint(4) NOT NULL default '0'");
354 setChange("ALTER TABLE tt_fav_reports CHANGE rfs_cb_activity show_task tinyint(4) NOT NULL default '0'");
355 setChange("ALTER TABLE tt_fav_reports CHANGE rfs_cb_note show_note tinyint(4) NOT NULL default '0'");
356 setChange("ALTER TABLE tt_fav_reports CHANGE rfs_cb_start show_start tinyint(4) NOT NULL default '0'");
357 setChange("ALTER TABLE tt_fav_reports CHANGE rfs_cb_finish show_end tinyint(4) NOT NULL default '0'");
358 setChange("ALTER TABLE tt_fav_reports CHANGE rfs_cb_duration show_duration tinyint(4) NOT NULL default '0'");
359 setChange("ALTER TABLE tt_fav_reports CHANGE rfs_cb_cost show_cost tinyint(4) NOT NULL default '0'");
360 setChange("ALTER TABLE tt_fav_reports CHANGE rfs_cb_cf_1 show_custom_field_1 tinyint(4) NOT NULL default '0'");
361 setChange("ALTER TABLE tt_fav_reports CHANGE rfs_cb_idle show_empty_days tinyint(4) NOT NULL default '0'");
362 setChange("ALTER TABLE tt_fav_reports CHANGE rfs_cb_totals_only show_totals_only tinyint(4) NOT NULL default '0'");
363 setChange("ALTER TABLE tt_fav_reports CHANGE rfs_groupby group_by varchar(20) default NULL");
364 setChange("ALTER TABLE tt_fav_reports CHANGE rfs_billable billable tinyint(4) default NULL");
365 setChange("ALTER TABLE projects CHANGE p_activities tasks text default NULL");
366 setChange("ALTER TABLE tt_teams CHANGE c_currency currency varchar(7) default NULL");
367 setChange("ALTER TABLE tt_teams CHANGE c_locktime locktime int(4) default '0'");
368 setChange("ALTER TABLE tt_teams CHANGE c_show_pie show_pie smallint(2) DEFAULT '1'");
369 setChange("ALTER TABLE tt_teams CHANGE c_lang lang varchar(10) NOT NULL default 'en'");
370 setChange("ALTER TABLE tt_teams CHANGE c_date_format date_format varchar(20) NOT NULL default '%Y-%m-%d'");
371 setChange("ALTER TABLE tt_teams CHANGE c_time_format time_format varchar(20) NOT NULL default '%H:%M'");
372 setChange("ALTER TABLE tt_teams CHANGE c_week_start week_start smallint(2) NOT NULL DEFAULT '0'");
373 setChange("ALTER TABLE tt_users CHANGE u_id id int(11) NOT NULL auto_increment");
374 setChange("ALTER TABLE tt_users CHANGE u_timestamp timestamp timestamp NOT NULL");
375 setChange("ALTER TABLE tt_users CHANGE u_login login varchar(50) NOT NULL");
376 setChange("drop index u_login_idx on tt_users");
377 setChange("create unique index login_idx on tt_users(login, u_active)");
378 setChange("ALTER TABLE tt_users CHANGE u_password password varchar(50) default NULL");
379 setChange("ALTER TABLE tt_users CHANGE u_name name varchar(100) default NULL");
380 setChange("ALTER TABLE tt_users CHANGE u_email email varchar(100) default NULL");
381 setChange("ALTER TABLE tt_users CHANGE u_rate rate float(6,2) NOT NULL default '0.00'");
382 setChange("update tt_users set u_active = NULL where u_active = 1000");
383 setChange("ALTER TABLE tt_users CHANGE u_active status tinyint(4) default '1'");
384 setChange("ALTER TABLE tt_teams ADD COLUMN status tinyint(4) default '1'");
385 setChange("ALTER TABLE tt_users ADD COLUMN role int(11) default '4'");
386 setChange("update tt_users set role = 1024 where login = 'admin'");
387 setChange("update tt_users set role = 68 where u_comanager = 1");
388 setChange("update tt_users set role = 324 where u_manager_id is null and login != 'admin'");
389 setChange("ALTER TABLE user_bind CHANGE ub_checked status tinyint(4) default '1'");
390 setChange("ALTER TABLE activities ADD COLUMN team_id int(11) NOT NULL");
391 setChange("ALTER TABLE clients ADD COLUMN team_id int(11) NOT NULL");
392 setChange("ALTER TABLE projects ADD COLUMN team_id int(11) NOT NULL");
395 // The update_to_team_id function sets team_id field projects, activities, and clients tables.
396 if ($_POST["update_to_team_id"]) {
397 $mdb2 = getConnection();
400 $sql = "select p_id, p_manager_id from projects where team_id = 0 limit 1000";
401 $res = $mdb2->query($sql);
402 if (is_a($res, 'PEAR_Error')) {
403 die($res->getMessage());
405 // Iterate through projects.
406 $projects_updated = 0;
407 while ($val = $res->fetchRow()) {
408 $project_id = $val['p_id'];
409 $manager_id = $val['p_manager_id'];
411 $sql = "select team_id from tt_users where id = $manager_id";
412 $res2 = $mdb2->query($sql);
413 if (is_a($res2, 'PEAR_Error')) {
414 die($res2->getMessage());
416 $val2 = $res2->fetchRow();
417 $team_id = $val2['team_id'];
420 $sql = "update projects set team_id = $team_id where p_id = $project_id";
421 $affected = $mdb2->exec($sql);
422 if (is_a($affected, 'PEAR_Error')) {
423 die($affected->getMessage());
425 $projects_updated += $affected;
428 print "Updated $projects_updated projects...<br>\n";
431 $sql = "select a_id, a_manager_id from activities where team_id = 0 limit 1000";
432 $res = $mdb2->query($sql);
433 if (is_a($res, 'PEAR_Error')) {
434 die($res->getMessage());
436 // Iterate through tasks.
438 while ($val = $res->fetchRow()) {
439 $task_id = $val['a_id'];
440 $manager_id = $val['a_manager_id'];
442 $sql = "select team_id from tt_users where id = $manager_id";
443 $res2 = $mdb2->query($sql);
444 if (is_a($res2, 'PEAR_Error')) {
445 die($res2->getMessage());
447 $val2 = $res2->fetchRow();
448 $team_id = $val2['team_id'];
451 $sql = "update activities set team_id = $team_id where a_id = $task_id";
452 $affected = $mdb2->exec($sql);
453 if (is_a($affected, 'PEAR_Error')) {
454 die($affected->getMessage());
456 $tasks_updated += $affected;
459 print "Updated $tasks_updated tasks...<br>\n";
462 $sql = "select clnt_id, clnt_id_um from clients where team_id = 0 limit 1000";
463 $res = $mdb2->query($sql);
464 if (is_a($res, 'PEAR_Error')) {
465 die($res->getMessage());
467 // Iterate through clients.
468 $clients_updated = 0;
469 while ($val = $res->fetchRow()) {
470 $client_id = $val['clnt_id'];
471 $manager_id = $val['clnt_id_um'];
473 $sql = "select team_id from tt_users where id = $manager_id";
474 $res2 = $mdb2->query($sql);
475 if (is_a($res2, 'PEAR_Error')) {
476 die($res2->getMessage());
478 $val2 = $res2->fetchRow();
479 $team_id = $val2['team_id'];
482 $sql = "update clients set team_id = $team_id where clnt_id = $client_id";
483 $affected = $mdb2->exec($sql);
484 if (is_a($affected, 'PEAR_Error')) {
485 die($affected->getMessage());
487 $clients_updated += $affected;
490 print "Updated $clients_updated clients...<br>\n";
493 if ($_POST["convert1485to1579"]) {
494 setChange("ALTER TABLE tt_fav_reports MODIFY id int(11) NOT NULL auto_increment");
495 setChange("RENAME TABLE clients TO tt_clients");
496 setChange("ALTER TABLE tt_clients CHANGE clnt_id id int(11) NOT NULL AUTO_INCREMENT");
497 setChange("ALTER TABLE tt_clients CHANGE clnt_status status tinyint(4) default '1'");
498 setChange("ALTER TABLE tt_clients DROP clnt_id_um");
499 setChange("ALTER TABLE tt_clients CHANGE clnt_name name varchar(80) NOT NULL");
500 setChange("drop index clnt_name_idx on tt_clients");
501 setChange("drop index client_name_idx on tt_clients");
502 setChange("create unique index client_name_idx on tt_clients(team_id, name, status)");
503 setChange("ALTER TABLE tt_teams ADD COLUMN `timestamp` timestamp NOT NULL");
504 setChange("ALTER TABLE tt_clients CHANGE clnt_addr_cust address varchar(255) default NULL");
505 setChange("ALTER TABLE tt_clients DROP clnt_discount");
506 setChange("ALTER TABLE tt_clients DROP clnt_comment");
507 setChange("ALTER TABLE tt_clients DROP clnt_fsubtotals");
508 setChange("ALTER TABLE tt_clients CHANGE clnt_tax tax float(6,2) NOT NULL default '0.00'");
509 setChange("ALTER TABLE activity_log ADD COLUMN client_id int(11) default NULL");
510 setChange("ALTER TABLE tt_teams DROP show_pie");
511 setChange("ALTER TABLE tt_fav_reports CHANGE group_by sort_by varchar(20) default 'date'");
512 setChange("RENAME TABLE tmp_refs TO tt_tmp_refs");
513 setChange("ALTER TABLE tt_tmp_refs CHANGE tr_created timestamp timestamp NOT NULL");
514 setChange("ALTER TABLE tt_tmp_refs CHANGE tr_code ref char(32) NOT NULL default ''");
515 setChange("ALTER TABLE tt_tmp_refs CHANGE tr_userid user_id int(11) NOT NULL");
516 setChange("RENAME TABLE projects TO tt_projects");
517 setChange("ALTER TABLE tt_projects CHANGE p_id id int(11) NOT NULL auto_increment");
518 setChange("ALTER TABLE tt_projects DROP p_timestamp");
519 setChange("ALTER TABLE tt_projects CHANGE p_name name varchar(80) NOT NULL");
520 setChange("ALTER TABLE tt_projects CHANGE p_status status tinyint(4) default '1'");
521 setChange("drop index p_name_idx on tt_projects");
522 setChange("create unique index project_idx on tt_projects(team_id, name, status)");
523 setChange("RENAME TABLE activities TO tt_tasks");
524 setChange("ALTER TABLE tt_tasks CHANGE a_id id int(11) NOT NULL auto_increment");
525 setChange("ALTER TABLE tt_tasks DROP a_timestamp");
526 setChange("ALTER TABLE tt_tasks CHANGE a_name name varchar(80) NOT NULL");
527 setChange("ALTER TABLE tt_tasks CHANGE a_status status tinyint(4) default '1'");
528 setChange("drop index a_name_idx on tt_tasks");
529 setChange("create unique index task_idx on tt_tasks(team_id, name, status)");
530 setChange("RENAME TABLE invoice_header TO tt_invoice_headers");
531 setChange("ALTER TABLE tt_invoice_headers CHANGE ih_user_id user_id int(11) NOT NULL");
532 setChange("ALTER TABLE tt_invoice_headers CHANGE ih_number number varchar(20) default NULL");
533 setChange("ALTER TABLE tt_invoice_headers DROP ih_addr_your");
534 setChange("ALTER TABLE tt_invoice_headers DROP ih_addr_cust");
535 setChange("ALTER TABLE tt_invoice_headers CHANGE ih_comment comment varchar(255) default NULL");
536 setChange("ALTER TABLE tt_invoice_headers CHANGE ih_tax tax float(6,2) default '0.00'");
537 setChange("ALTER TABLE tt_invoice_headers CHANGE ih_discount discount float(6,2) default '0.00'");
538 setChange("ALTER TABLE tt_invoice_headers CHANGE ih_fsubtotals subtotals tinyint(4) NOT NULL default '0'");
539 setChange("ALTER TABLE tt_users DROP u_comanager");
540 setChange("ALTER TABLE tt_tasks DROP a_manager_id");
541 setChange("ALTER TABLE tt_projects DROP p_manager_id");
542 setChange("ALTER TABLE tt_users DROP u_manager_id");
543 setChange("ALTER TABLE activity_bind DROP ab_id");
544 setChange("RENAME TABLE activity_bind TO tt_project_task_binds");
545 setChange("ALTER TABLE tt_project_task_binds CHANGE ab_id_p project_id int(11) NOT NULL");
546 setChange("ALTER TABLE tt_project_task_binds CHANGE ab_id_a task_id int(11) NOT NULL");
547 setChange("RENAME TABLE user_bind TO tt_user_project_binds");
548 setChange("ALTER TABLE tt_user_project_binds CHANGE ub_rate rate float(6,2) NOT NULL default '0.00'");
549 setChange("ALTER TABLE tt_user_project_binds CHANGE ub_id_p project_id int(11) NOT NULL");
550 setChange("ALTER TABLE tt_user_project_binds CHANGE ub_id_u user_id int(11) NOT NULL");
551 setChange("ALTER TABLE tt_user_project_binds CHANGE ub_id id int(11) NOT NULL auto_increment");
552 setChange("CREATE TABLE `tt_client_project_binds` (`client_id` int(11) NOT NULL, `project_id` int(11) NOT NULL)");
553 setChange("ALTER TABLE tt_user_project_binds MODIFY rate float(6,2) default '0.00'");
554 setChange("ALTER TABLE tt_clients MODIFY tax float(6,2) default '0.00'");
555 setChange("RENAME TABLE activity_log TO tt_log");
556 setChange("ALTER TABLE tt_log CHANGE al_timestamp timestamp timestamp NOT NULL");
557 setChange("ALTER TABLE tt_log CHANGE al_user_id user_id int(11) NOT NULL");
558 setChange("ALTER TABLE tt_log CHANGE al_date date date NOT NULL");
559 setChange("drop index al_date_idx on tt_log");
560 setChange("create index date_idx on tt_log(date)");
561 setChange("ALTER TABLE tt_log CHANGE al_from start time default NULL");
562 setChange("ALTER TABLE tt_log CHANGE al_duration duration time default NULL");
563 setChange("ALTER TABLE tt_log CHANGE al_project_id project_id int(11) NOT NULL");
564 setChange("ALTER TABLE tt_log MODIFY project_id int(11) default NULL");
565 setChange("ALTER TABLE tt_log CHANGE al_activity_id task_id int(11) default NULL");
566 setChange("ALTER TABLE tt_log CHANGE al_comment comment text");
567 setChange("ALTER TABLE tt_log CHANGE al_billable billable tinyint(4) default '0'");
568 setChange("drop index al_user_id_idx on tt_log");
569 setChange("drop index al_project_id_idx on tt_log");
570 setChange("drop index al_activity_id_idx on tt_log");
571 setChange("create index user_idx on tt_log(user_id)");
572 setChange("create index project_idx on tt_log(project_id)");
573 setChange("create index task_idx on tt_log(task_id)");
574 setChange("ALTER TABLE tt_custom_field_log CHANGE al_id log_id bigint NOT NULL");
575 setChange("RENAME TABLE sysconfig TO tt_config");
576 setChange("ALTER TABLE tt_config DROP sysc_id");
577 setChange("ALTER TABLE tt_config CHANGE sysc_id_u user_id int(11) NOT NULL");
578 setChange("ALTER TABLE tt_config CHANGE sysc_name param_name varchar(32) NOT NULL");
579 setChange("ALTER TABLE tt_config CHANGE sysc_value param_value varchar(80) default NULL");
580 setChange("create unique index param_idx on tt_config(user_id, param_name)");
581 setChange("ALTER TABLE tt_log ADD COLUMN invoice_id int(11) default NULL");
582 setChange("ALTER TABLE tt_projects ADD COLUMN description varchar(255) default NULL");
583 setChange("CREATE TABLE `tt_invoices` (`id` int(11) NOT NULL auto_increment, `team_id` int(11) NOT NULL, `number` varchar(20) default NULL, `client_name` varchar(255) default NULL, `client_addr` varchar(255) default NULL, `comment` varchar(255) default NULL, `tax` float(6,2) default '0.00', `discount` float(6,2) default '0.00', PRIMARY KEY (`id`))");
584 setChange("ALTER TABLE tt_invoices drop number");
585 setChange("ALTER TABLE tt_invoices drop client_name");
586 setChange("ALTER TABLE tt_invoices drop client_addr");
587 setChange("ALTER TABLE tt_invoices drop comment");
588 setChange("ALTER TABLE tt_invoices drop tax");
589 setChange("ALTER TABLE tt_invoices ADD COLUMN name varchar(80) NOT NULL");
590 setChange("ALTER TABLE tt_invoices ADD COLUMN client_id int(11) NOT NULL");
591 setChange("ALTER TABLE tt_invoices ADD COLUMN start_date date NOT NULL");
592 setChange("ALTER TABLE tt_invoices ADD COLUMN end_date date NOT NULL");
593 setChange("create unique index name_idx on tt_invoices(team_id, name)");
594 setChange("drop index ub_id_u on tt_user_project_binds");
595 setChange("create unique index bind_idx on tt_user_project_binds(user_id, project_id)");
596 setChange("create index client_idx on tt_log(client_id)");
597 setChange("create index invoice_idx on tt_log(invoice_id)");
600 if ($_POST["convert1579to1600"]) {
601 setChange("ALTER TABLE tt_invoices ADD COLUMN date date NOT NULL");
602 setChange("ALTER TABLE tt_teams ADD COLUMN custom_logo tinyint(4) default '0'");
603 setChange("ALTER TABLE tt_tasks ADD COLUMN description varchar(255) default NULL");
604 setChange("ALTER TABLE tt_projects MODIFY name varchar(80) COLLATE utf8_bin NOT NULL");
605 setChange("ALTER TABLE tt_users MODIFY login varchar(50) COLLATE utf8_bin NOT NULL");
606 setChange("ALTER TABLE tt_tasks MODIFY name varchar(80) COLLATE utf8_bin NOT NULL");
607 setChange("ALTER TABLE tt_invoices MODIFY name varchar(80) COLLATE utf8_bin NOT NULL");
608 setChange("ALTER TABLE tt_clients MODIFY name varchar(80) COLLATE utf8_bin NOT NULL");
609 setChange("ALTER TABLE tt_clients ADD COLUMN projects text default NULL");
610 setChange("ALTER TABLE tt_custom_field_log ADD COLUMN option_id int(11) default NULL");
611 setChange("ALTER TABLE tt_teams ADD COLUMN tracking_mode smallint(2) NOT NULL DEFAULT '2'");
612 setChange("ALTER TABLE tt_teams ADD COLUMN record_type smallint(2) NOT NULL DEFAULT '0'");
613 setChange("ALTER TABLE tt_invoices DROP start_date");
614 setChange("ALTER TABLE tt_invoices DROP end_date");
617 // The update_clients function updates projects field in tt_clients table.
618 if ($_POST["update_clients"]) {
619 $mdb2 = getConnection();
620 $sql = "select id from tt_clients where status = 1 or status = 0";
621 $res = $mdb2->query($sql);
622 if (is_a($res, 'PEAR_Error')) {
623 die($res->getMessage());
626 $clients_updated = 0;
627 // Iterate through clients.
628 while ($val = $res->fetchRow()) {
629 $client_id = $val['id'];
631 // Get projects binds for client.
632 $sql = "select cpb.project_id from tt_client_project_binds cpb
633 left join tt_projects p on (p.id = cpb.project_id)
634 where cpb.client_id = $client_id order by p.name";
636 $result = $mdb2->query($sql);
637 if (is_a($result, 'PEAR_Error'))
638 die($result->getMessage());
640 $project_arr = array();
641 while ($value = $result->fetchRow()) {
642 $project_arr[] = $value['project_id'];
644 $comma_separated = implode(',', $project_arr); // This is a comma-separated list of associated project ids.
646 // Update the projects field.
647 $sql = "update tt_clients set projects = ".$mdb2->quote($comma_separated)." where id = $client_id";
648 $affected = $mdb2->exec($sql);
649 if (is_a($affected, 'PEAR_Error'))
650 die($affected->getMessage());
651 $clients_updated += $affected;
653 print "Updated $clients_updated clients...<br>\n";
656 // The update_custom_fields function updates option_id field field in tt_custom_field_log table.
657 if ($_POST['update_custom_fields']) {
658 $mdb2 = getConnection();
659 $sql = "update tt_custom_field_log set option_id = value where field_id in (select id from tt_custom_fields where type = 2)";
660 $affected = $mdb2->exec($sql);
661 if (is_a($affected, 'PEAR_Error'))
662 die($affected->getMessage());
664 print "Updated $affected custom fields...<br>\n";
667 // The update_tracking_mode function sets the tracking_mode field in tt_teams table to 2 (== MODE_PROJECTS_AND_TASKS).
668 if ($_POST['update_tracking_mode']) {
669 $mdb2 = getConnection();
670 $sql = "update tt_teams set tracking_mode = 2 where tracking_mode = 0";
671 $affected = $mdb2->exec($sql);
672 if (is_a($affected, 'PEAR_Error'))
673 die($affected->getMessage());
675 print "Updated $affected teams...<br>\n";
678 if ($_POST["convert1600to11400"]) {
679 setChange("DROP TABLE IF EXISTS tt_invoice_headers");
680 setChange("ALTER TABLE tt_fav_reports ADD COLUMN `client_id` int(11) default NULL");
681 setChange("ALTER TABLE tt_fav_reports ADD COLUMN `cf_1_option_id` int(11) default NULL");
682 setChange("ALTER TABLE tt_fav_reports ADD COLUMN `show_client` tinyint(4) NOT NULL default '0'");
683 setChange("ALTER TABLE tt_fav_reports ADD COLUMN `show_invoice` tinyint(4) NOT NULL default '0'");
684 setChange("ALTER TABLE tt_fav_reports ADD COLUMN `group_by` varchar(20) default NULL");
685 setChange("CREATE TABLE `tt_expense_items` (`id` bigint NOT NULL auto_increment, `date` date NOT NULL, `user_id` int(11) NOT NULL, `client_id` int(11) default NULL, `project_id` int(11) default NULL, `name` varchar(255) NOT NULL, `cost` decimal(10,2) default '0.00', `invoice_id` int(11) default NULL, PRIMARY KEY (`id`))");
686 setChange("create index date_idx on tt_expense_items(date)");
687 setChange("create index user_idx on tt_expense_items(user_id)");
688 setChange("create index client_idx on tt_expense_items(client_id)");
689 setChange("create index project_idx on tt_expense_items(project_id)");
690 setChange("create index invoice_idx on tt_expense_items(invoice_id)");
691 setChange("ALTER TABLE tt_fav_reports DROP sort_by");
692 setChange("ALTER TABLE tt_fav_reports DROP show_empty_days");
693 setChange("ALTER TABLE tt_invoices DROP discount");
694 setChange("ALTER TABLE tt_users ADD COLUMN `client_id` int(11) default NULL");
695 setChange("ALTER TABLE tt_teams ADD COLUMN `decimal_mark` char(1) NOT NULL default '.'");
696 setChange("ALTER TABLE tt_fav_reports ADD COLUMN `invoice` tinyint(4) default NULL");
697 setChange("CREATE TABLE `tt_cron` (`id` int(11) NOT NULL auto_increment, `cron_spec` varchar(255) NOT NULL, `last` int(11) default NULL, `next` int(11) default NULL, `report_id` int(11) default NULL, `email` varchar(100) default NULL, `status` tinyint(4) default '1', PRIMARY KEY (`id`))");
698 setChange("ALTER TABLE tt_cron ADD COLUMN `team_id` int(11) NOT NULL");
699 setChange("create index client_idx on tt_client_project_binds(client_id)");
700 setChange("create index project_idx on tt_client_project_binds(project_id)");
701 setChange("ALTER TABLE tt_log ADD COLUMN status tinyint(4) default '1'");
702 setChange("ALTER TABLE tt_custom_field_log ADD COLUMN status tinyint(4) default '1'");
703 setChange("ALTER TABLE tt_expense_items ADD COLUMN status tinyint(4) default '1'");
704 setChange("ALTER TABLE tt_invoices ADD COLUMN status tinyint(4) default '1'");
705 setChange("DROP INDEX name_idx on tt_invoices");
706 setChange("create unique index name_idx on tt_invoices(team_id, name, status)");
707 setChange("ALTER TABLE tt_teams ADD COLUMN lock_spec varchar(255) default NULL");
708 setChange("ALTER TABLE tt_teams DROP locktime");
709 setChange("CREATE TABLE `tt_monthly_quota` (`team_id` int(11) NOT NULL, `year` smallint(5) UNSIGNED NOT NULL, `month` tinyint(3) UNSIGNED NOT NULL, `quota` smallint(5) UNSIGNED NOT NULL, PRIMARY KEY (`year`,`month`,`team_id`))");
710 setChange("ALTER TABLE `tt_monthly_quota` ADD CONSTRAINT `FK_TT_TEAM_CONSTRAING` FOREIGN KEY (`team_id`) REFERENCES `tt_teams` (`id`) ON DELETE CASCADE ON UPDATE CASCADE");
711 setChange("ALTER TABLE `tt_teams` ADD `workday_hours` SMALLINT NULL DEFAULT '8' AFTER `lock_spec`");
712 setChange("RENAME TABLE tt_monthly_quota TO tt_monthly_quotas");
713 setChange("ALTER TABLE tt_expense_items modify `name` text NOT NULL");
714 setChange("ALTER TABLE `tt_teams` ADD `uncompleted_indicators` SMALLINT(2) NOT NULL DEFAULT '0' AFTER `record_type`");
715 setChange("CREATE TABLE `tt_predefined_expenses` (`id` int(11) NOT NULL auto_increment, `team_id` int(11) NOT NULL, `name` varchar(255) NOT NULL, `cost` decimal(10,2) default '0.00', PRIMARY KEY (`id`))");
716 setChange("ALTER TABLE `tt_teams` ADD `task_required` smallint(2) NOT NULL DEFAULT '0' AFTER `tracking_mode`");
717 setChange("ALTER TABLE `tt_teams` ADD `project_required` smallint(2) NOT NULL DEFAULT '0' AFTER `tracking_mode`");
718 setChange("ALTER TABLE `tt_cron` ADD `report_condition` varchar(255) default NULL AFTER `email`");
719 setChange("ALTER TABLE `tt_fav_reports` ADD `status` tinyint(4) default '1'");
720 setChange("ALTER TABLE `tt_teams` ADD `bcc_email` varchar(100) default NULL AFTER `uncompleted_indicators`");
721 setChange("ALTER TABLE `tt_cron` ADD `cc` varchar(100) default NULL AFTER `email`");
722 setChange("ALTER TABLE `tt_cron` ADD `subject` varchar(100) default NULL AFTER `cc`");
723 setChange("ALTER TABLE `tt_log` ADD `paid` tinyint(4) NULL default '0' AFTER `billable`");
726 if ($_POST["convert11400to11744"]) {
727 setChange("ALTER TABLE `tt_teams` DROP `address`");
728 setChange("ALTER TABLE `tt_fav_reports` ADD `report_spec` text default NULL AFTER `user_id`");
729 setChange("ALTER TABLE `tt_fav_reports` ADD `paid_status` tinyint(4) default NULL AFTER `invoice`");
730 setChange("ALTER TABLE `tt_fav_reports` ADD `show_paid` tinyint(4) NOT NULL DEFAULT '0' AFTER `show_invoice`");
731 setChange("ALTER TABLE `tt_expense_items` ADD `paid` tinyint(4) NULL default '0' AFTER `invoice_id`");
732 setChange("ALTER TABLE `tt_monthly_quotas` MODIFY `quota` decimal(5,2) NOT NULL");
733 setChange("ALTER TABLE `tt_teams` MODIFY `workday_hours` decimal(5,2) DEFAULT '8.00'");
734 setChange("ALTER TABLE `tt_teams` ADD `config` text default NULL AFTER `custom_logo`");
735 setChange("ALTER TABLE `tt_monthly_quotas` ADD `minutes` int(11) DEFAULT NULL");
736 setChange("ALTER TABLE `tt_teams` ADD `workday_minutes` smallint(4) DEFAULT '480' AFTER `workday_hours`");
737 setChange("UPDATE `tt_teams` SET `workday_minutes` = 60 * `workday_hours`");
738 setChange("ALTER TABLE `tt_teams` DROP `workday_hours`");
739 setChange("UPDATE `tt_monthly_quotas` SET `minutes` = 60 * `quota`");
740 setChange("ALTER TABLE `tt_monthly_quotas` DROP `quota`");
741 setChange("ALTER TABLE `tt_teams` DROP `uncompleted_indicators`");
742 setChange("ALTER TABLE `tt_users` MODIFY `timestamp` timestamp default CURRENT_TIMESTAMP");
743 setChange("ALTER TABLE `tt_teams` MODIFY `timestamp` timestamp default CURRENT_TIMESTAMP");
744 setChange("ALTER TABLE `tt_log` MODIFY `timestamp` timestamp default CURRENT_TIMESTAMP");
745 setChange("ALTER TABLE `tt_tmp_refs` MODIFY `timestamp` timestamp default CURRENT_TIMESTAMP");
746 setChange("CREATE TABLE `tt_roles` (`id` int(11) NOT NULL auto_increment, `team_id` int(11) NOT NULL, `name` varchar(80) default NULL, `rank` int(11) default 0, `rights` text default NULL, `status` tinyint(4) default 1, PRIMARY KEY (`id`))");
747 setChange("create unique index role_idx on tt_roles(team_id, rank, status)");
748 setChange("ALTER TABLE `tt_roles` ADD `description` varchar(255) default NULL AFTER `name`");
749 setChange("ALTER TABLE `tt_users` ADD `role_id` int(11) default NULL AFTER `role`");
750 setChange("CREATE TABLE `tt_site_config` (`param_name` varchar(32) NOT NULL, `param_value` text default NULL, `created` datetime default NULL, `updated` datetime default NULL, PRIMARY KEY (`param_name`))");
751 setChange("INSERT INTO `tt_site_config` (`param_name`, `param_value`, `created`) VALUES ('version_db', '1.17.34', now())");
752 setChange("INSERT INTO `tt_roles` (`team_id`, `name`, `rank`, `rights`) VALUES (0, 'Site administrator', 1024, 'administer_site')");
753 setChange("INSERT INTO `tt_roles` (`team_id`, `name`, `rank`, `rights`) VALUES (0, 'Top manager', 512, 'data_entry,view_own_data,manage_own_settings,view_users,on_behalf_data_entry,view_data,override_punch_mode,swap_roles,approve_timesheets,manage_users,manage_projects,manage_tasks,manage_custom_fields,manage_clients,manage_invoices,manage_features,manage_basic_settings,manage_advanced_settings,manage_roles,export_data,manage_subgroups')");
754 setChange("UPDATE `tt_site_config` SET `param_value` = '1.17.35' where param_name = 'version_db'");
755 setChange("update `tt_users` inner join `tt_site_config` sc on (sc.param_name = 'version_db' and sc.param_value = '1.17.35') set role_id = (select id from tt_roles where rank = 1024) where role = 1024");
756 setChange("update `tt_roles` inner join `tt_site_config` sc on (sc.param_name = 'version_db' and sc.param_value = '1.17.35') set rights = 'data_entry,view_own_reports,view_own_charts,view_own_invoices,manage_own_settings,view_users,on_behalf_data_entry,view_reports,view_charts,override_punch_mode,swap_roles,approve_timesheets,manage_users,manage_projects,manage_tasks,manage_custom_fields,manage_clients,manage_invoices,manage_features,manage_basic_settings,manage_advanced_settings,manage_roles,export_data,manage_subgroups' where team_id = 0 and rank = 512");
757 setChange("update `tt_roles` inner join `tt_site_config` sc on (sc.param_name = 'version_db' and sc.param_value = '1.17.35') set rights = replace(rights, 'view_own_data', 'view_own_reports,view_own_charts') where team_id > 0");
758 setChange("update `tt_roles` inner join `tt_site_config` sc on (sc.param_name = 'version_db' and sc.param_value = '1.17.35') set rights = replace(rights, 'view_data', 'view_reports,view_charts') where team_id > 0");
759 setChange("update `tt_roles` inner join `tt_site_config` sc on (sc.param_name = 'version_db' and sc.param_value = '1.17.35') set rights = replace(rights, 'view_own_charts,manage_own_settings', 'view_own_charts,view_own_invoices,manage_own_settings') where team_id > 0 and rank = 16");
760 setChange("UPDATE `tt_site_config` SET `param_value` = '1.17.40' where param_name = 'version_db'");
761 setChange("update `tt_roles` inner join `tt_site_config` sc on (sc.param_name = 'version_db' and sc.param_value = '1.17.40') set rights = replace(rights, 'on_behalf_data_entry', 'track_time,track_expenses')");
762 setChange("update `tt_roles` inner join `tt_site_config` sc on (sc.param_name = 'version_db' and sc.param_value = '1.17.40') set rights = replace(rights, 'data_entry', 'track_own_time,track_own_expenses')");
763 setChange("UPDATE `tt_site_config` SET `param_value` = '1.17.43' where param_name = 'version_db'");
764 setChange("update `tt_roles` inner join `tt_site_config` sc on (sc.param_name = 'version_db' and sc.param_value = '1.17.43') set rights = replace(rights, 'override_punch_mode,swap_roles', 'override_punch_mode,override_date_lock,swap_roles')");
765 setChange("UPDATE `tt_site_config` SET `param_value` = '1.17.44' where param_name = 'version_db'");
768 // The update_role_id function assigns a role_id to users, who don't have it.
769 if ($_POST['update_role_id']) {
772 $mdb2 = getConnection();
774 $sql = "select u.id, u.team_id, u.role, t.lang from tt_users u inner join `tt_site_config` sc on (sc.param_name = 'version_db' and sc.param_value = '1.17.44') left join tt_teams t on (u.team_id = t.id) where u.role_id is NULL and u.status is NOT NULL";
775 $res = $mdb2->query($sql);
776 if (is_a($res, 'PEAR_Error')) die($res->getMessage());
779 // Iterate through users.
780 while ($val = $res->fetchRow()) {
782 $user_id = $val['id'];
783 $team_id = $val['team_id'];
784 $lang = $val['lang'];
785 $legacy_role = $val['role'];
787 $sql = "select count(*) as count from tt_roles where team_id = $team_id";
788 $result = $mdb2->query($sql);
789 if (is_a($result, 'PEAR_Error')) die($result->getMessage());
790 $row = $result->fetchRow();
791 if ($row['count'] == 0)
792 ttRoleHelper::createPredefinedRoles_1_17_44($team_id, $lang);
794 // Obtain new role id based on legacy role.
795 $role_id = ttRoleHelper::getRoleByRank_1_17_44($legacy_role, $team_id);
796 if (!$role_id) continue; // Role not found, nothing to do.
798 $sql = "update tt_users set role_id = $role_id where id = $user_id and team_id = $team_id";
799 $affected = $mdb2->exec($sql);
800 if (is_a($affected, 'PEAR_Error')) die($affected->getMessage());
803 // if ($users_updated >= 1000) break; // TODO: uncomment for large user sets to run multiple times.
805 print "Updated $users_updated users...<br>\n";
808 if ($_POST["convert11744to11796"]) {
809 setChange("update `tt_roles` inner join `tt_site_config` sc on (sc.param_name = 'version_db' and sc.param_value = '1.17.44') set rights = replace(rights, 'override_punch_mode,override_date_lock', 'override_punch_mode,override_own_punch_mode,override_date_lock')");
810 setChange("UPDATE `tt_site_config` SET param_value = '1.17.48' where param_name = 'version_db' and param_value = '1.17.44'");
811 setChange("update `tt_users` inner join `tt_site_config` sc on (sc.param_name = 'version_db' and sc.param_value = '1.17.48') set role_id = (select id from tt_roles where team_id = 0 and rank = 512) where role = 324");
812 setChange("UPDATE `tt_site_config` SET param_value = '1.17.49' where param_name = 'version_db' and param_value = '1.17.48'");
813 setChange("ALTER TABLE `tt_users` drop role");
814 setChange("UPDATE `tt_site_config` SET param_value = '1.17.50' where param_name = 'version_db' and param_value = '1.17.49'");
815 setChange("update `tt_roles` inner join `tt_site_config` sc on (sc.param_name = 'version_db' and sc.param_value = '1.17.50') set rights = replace(rights, 'override_date_lock,swap_roles', 'override_date_lock,override_own_date_lock,swap_roles')");
816 setChange("UPDATE `tt_site_config` SET param_value = '1.17.51' where param_name = 'version_db' and param_value = '1.17.50'");
817 setChange("ALTER TABLE `tt_users` ADD `created` datetime default NULL AFTER `email`");
818 setChange("ALTER TABLE `tt_users` ADD `created_ip` varchar(45) default NULL AFTER `created`");
819 setChange("ALTER TABLE `tt_users` ADD `created_by` int(11) default NULL AFTER `created_ip`");
820 setChange("ALTER TABLE `tt_users` ADD `modified` datetime default NULL AFTER `created_by`");
821 setChange("ALTER TABLE `tt_users` ADD `modified_ip` varchar(45) default NULL AFTER `modified`");
822 setChange("ALTER TABLE `tt_users` ADD `modified_by` int(11) default NULL AFTER `modified_ip`");
823 setChange("ALTER TABLE `tt_users` ADD `accessed` datetime default NULL AFTER `modified_by`");
824 setChange("ALTER TABLE `tt_users` ADD `accessed_ip` varchar(45) default NULL AFTER `accessed`");
825 setChange("UPDATE `tt_site_config` SET param_value = '1.17.52' where param_name = 'version_db' and param_value = '1.17.51'");
826 setChange("ALTER TABLE `tt_site_config` CHANGE `updated` `modified` datetime default NULL");
827 setChange("UPDATE `tt_site_config` SET param_value = '1.17.53', modified = now() where param_name = 'version_db' and param_value = '1.17.52'");
828 setChange("ALTER TABLE `tt_log` ADD `created` datetime default NULL AFTER `paid`");
829 setChange("ALTER TABLE `tt_log` ADD `created_ip` varchar(45) default NULL AFTER `created`");
830 setChange("ALTER TABLE `tt_log` ADD `created_by` int(11) default NULL AFTER `created_ip`");
831 setChange("ALTER TABLE `tt_log` ADD `modified` datetime default NULL AFTER `created_by`");
832 setChange("ALTER TABLE `tt_log` ADD `modified_ip` varchar(45) default NULL AFTER `modified`");
833 setChange("ALTER TABLE `tt_log` ADD `modified_by` int(11) default NULL AFTER `modified_ip`");
834 setChange("UPDATE `tt_site_config` SET param_value = '1.17.56', modified = now() where param_name = 'version_db' and param_value = '1.17.53'");
835 setChange("ALTER TABLE `tt_expense_items` ADD `created` datetime default NULL AFTER `paid`");
836 setChange("ALTER TABLE `tt_expense_items` ADD `created_ip` varchar(45) default NULL AFTER `created`");
837 setChange("ALTER TABLE `tt_expense_items` ADD `created_by` int(11) default NULL AFTER `created_ip`");
838 setChange("ALTER TABLE `tt_expense_items` ADD `modified` datetime default NULL AFTER `created_by`");
839 setChange("ALTER TABLE `tt_expense_items` ADD `modified_ip` varchar(45) default NULL AFTER `modified`");
840 setChange("ALTER TABLE `tt_expense_items` ADD `modified_by` int(11) default NULL AFTER `modified_ip`");
841 setChange("UPDATE `tt_site_config` SET param_value = '1.17.59', modified = now() where param_name = 'version_db' and param_value = '1.17.56'");
842 setChange("ALTER TABLE `tt_fav_reports` ADD `show_ip` tinyint(4) NOT NULL DEFAULT '0' AFTER `show_paid`");
843 setChange("UPDATE `tt_site_config` SET param_value = '1.17.61', modified = now() where param_name = 'version_db' and param_value = '1.17.59'");
844 setChange("update `tt_log` l inner join `tt_site_config` sc on (sc.param_name = 'version_db' and sc.param_value = '1.17.61') set l.created = l.timestamp where l.created is null");
845 setChange("ALTER TABLE `tt_log` drop `timestamp`");
846 setChange("UPDATE `tt_site_config` SET param_value = '1.17.64', modified = now() where param_name = 'version_db' and param_value = '1.17.61'");
847 setChange("ALTER TABLE `tt_teams` ADD `created` datetime default NULL AFTER `config`");
848 setChange("ALTER TABLE `tt_teams` ADD `created_ip` varchar(45) default NULL AFTER `created`");
849 setChange("ALTER TABLE `tt_teams` ADD `created_by` int(11) default NULL AFTER `created_ip`");
850 setChange("ALTER TABLE `tt_teams` ADD `modified` datetime default NULL AFTER `created_by`");
851 setChange("ALTER TABLE `tt_teams` ADD `modified_ip` varchar(45) default NULL AFTER `modified`");
852 setChange("ALTER TABLE `tt_teams` ADD `modified_by` int(11) default NULL AFTER `modified_ip`");
853 setChange("UPDATE `tt_site_config` SET param_value = '1.17.65', modified = now() where param_name = 'version_db' and param_value = '1.17.64'");
854 setChange("update `tt_teams` t inner join `tt_site_config` sc on (sc.param_name = 'version_db' and sc.param_value = '1.17.65') set t.created = t.timestamp where t.created is null");
855 setChange("update `tt_users` u inner join `tt_site_config` sc on (sc.param_name = 'version_db' and sc.param_value = '1.17.65') set u.created = u.timestamp where u.created is null");
856 setChange("ALTER TABLE `tt_teams` drop `timestamp`");
857 setChange("ALTER TABLE `tt_users` drop `timestamp`");
858 setChange("UPDATE `tt_site_config` SET param_value = '1.17.66', modified = now() where param_name = 'version_db' and param_value = '1.17.65'");
859 setChange("ALTER TABLE `tt_tmp_refs` ADD `created` datetime default NULL AFTER `timestamp`");
860 setChange("ALTER TABLE `tt_tmp_refs` drop `timestamp`");
861 setChange("delete from `tt_tmp_refs`");
862 setChange("UPDATE `tt_site_config` SET param_value = '1.17.67', modified = now() where param_name = 'version_db' and param_value = '1.17.66'");
863 setChange("ALTER TABLE `tt_teams` ADD `parent_id` int(11) default NULL AFTER `id`");
864 setChange("ALTER TABLE `tt_teams` ADD `org_id` int(11) default NULL AFTER `parent_id`");
865 setChange("UPDATE `tt_site_config` SET param_value = '1.17.76', modified = now() where param_name = 'version_db' and param_value = '1.17.67'");
866 setChange("update `tt_roles` inner join `tt_site_config` sc on (sc.param_name = 'version_db' and sc.param_value = '1.17.76') set rights = replace(rights, ',manage_users', ',manage_own_account,manage_users')");
867 setChange("UPDATE `tt_site_config` SET param_value = '1.17.77', modified = now() where param_name = 'version_db' and param_value = '1.17.76'");
868 setChange("update `tt_roles` inner join `tt_site_config` sc on (sc.param_name = 'version_db' and sc.param_value = '1.17.77') set rights = replace(rights, 'manage_own_settings,view_users', 'manage_own_settings,view_projects,view_users')");
869 setChange("UPDATE `tt_site_config` SET param_value = '1.17.78', modified = now() where param_name = 'version_db' and param_value = '1.17.77'");
870 setChange("update `tt_roles` inner join `tt_site_config` sc on (sc.param_name = 'version_db' and sc.param_value = '1.17.78') set rights = replace(rights, 'manage_own_settings,view_projects,view_users', 'view_own_projects,manage_own_settings,view_users')");
871 setChange("UPDATE `tt_site_config` SET param_value = '1.17.79', modified = now() where param_name = 'version_db' and param_value = '1.17.78'");
872 setChange("RENAME TABLE `tt_teams` TO `tt_groups`");
873 setChange("ALTER TABLE `tt_monthly_quotas` DROP FOREIGN KEY FK_TT_TEAM_CONSTRAING");
874 setChange("UPDATE `tt_site_config` SET param_value = '1.17.80', modified = now() where param_name = 'version_db' and param_value = '1.17.79'");
875 setChange("ALTER TABLE `tt_roles` CHANGE `team_id` `group_id` int(11) NOT NULL");
876 setChange("ALTER TABLE `tt_users` CHANGE `team_id` `group_id` int(11) NOT NULL");
877 setChange("ALTER TABLE `tt_projects` CHANGE `team_id` `group_id` int(11) NOT NULL");
878 setChange("ALTER TABLE `tt_tasks` CHANGE `team_id` `group_id` int(11) NOT NULL");
879 setChange("ALTER TABLE `tt_invoices` CHANGE `team_id` `group_id` int(11) NOT NULL");
880 setChange("ALTER TABLE `tt_cron` CHANGE `team_id` `group_id` int(11) NOT NULL");
881 setChange("ALTER TABLE `tt_clients` CHANGE `team_id` `group_id` int(11) NOT NULL");
882 setChange("ALTER TABLE `tt_custom_fields` CHANGE `team_id` `group_id` int(11) NOT NULL");
883 setChange("ALTER TABLE `tt_predefined_expenses` CHANGE `team_id` `group_id` int(11) NOT NULL");
884 setChange("ALTER TABLE `tt_monthly_quotas` CHANGE `team_id` `group_id` int(11) NOT NULL");
885 setChange("UPDATE `tt_site_config` SET param_value = '1.17.81', modified = now() where param_name = 'version_db' and param_value = '1.17.80'");
886 setChange("update `tt_roles` inner join `tt_site_config` sc on (sc.param_name = 'version_db' and sc.param_value = '1.17.81') set rights = replace(rights, ',manage_invoices', ',manage_invoices,view_all_reports')");
887 setChange("UPDATE `tt_site_config` SET param_value = '1.17.82', modified = now() where param_name = 'version_db' and param_value = '1.17.81'");
888 setChange("ALTER TABLE `tt_groups` ADD `allow_ip` varchar(255) default NULL AFTER `bcc_email`");
889 setChange("update `tt_roles` inner join `tt_site_config` sc on (sc.param_name = 'version_db' and sc.param_value = '1.17.82') set rights = replace(rights, 'manage_invoices,view_all_reports', 'manage_invoices,override_allow_ip,view_all_reports')");
890 setChange("UPDATE `tt_site_config` SET param_value = '1.17.83', modified = now() where param_name = 'version_db' and param_value = '1.17.82'");
891 setChange("update `tt_roles` inner join `tt_site_config` sc on (sc.param_name = 'version_db' and sc.param_value = '1.17.83') set rights = replace(rights, 'view_own_projects,manage_own_settings', 'view_own_projects,view_own_tasks,manage_own_settings')");
892 setChange("UPDATE `tt_site_config` SET param_value = '1.17.84', modified = now() where param_name = 'version_db' and param_value = '1.17.83'");
893 setChange("update `tt_roles` inner join `tt_site_config` sc on (sc.param_name = 'version_db' and sc.param_value = '1.17.84') set rights = replace(rights, 'view_charts,override_punch_mode', 'view_charts,view_own_clients,override_punch_mode')");
894 setChange("UPDATE `tt_site_config` SET param_value = '1.17.85', modified = now() where param_name = 'version_db' and param_value = '1.17.84'");
895 setChange("update `tt_roles` inner join `tt_site_config` sc on (sc.param_name = 'version_db' and sc.param_value = '1.17.85') set rights = replace(rights, 'override_allow_ip,view_all_reports', 'override_allow_ip,manage_basic_settings,view_all_reports')");
896 setChange("update `tt_roles` inner join `tt_site_config` sc on (sc.param_name = 'version_db' and sc.param_value = '1.17.85') set rights = replace(rights, 'manage_features,manage_basic_setting,manage_advanced_settings', 'manage_features,manage_advanced_settings')");
897 setChange("UPDATE `tt_site_config` SET param_value = '1.17.86', modified = now() where param_name = 'version_db' and param_value = '1.17.85'");
898 setChange("ALTER TABLE `tt_groups` ADD `password_complexity` varchar(64) default NULL AFTER `allow_ip`");
899 setChange("UPDATE `tt_site_config` SET param_value = '1.17.87', modified = now() where param_name = 'version_db' and param_value = '1.17.86'");
900 setChange("update `tt_roles` inner join `tt_site_config` sc on (sc.param_name = 'version_db' and sc.param_value = '1.17.87') set rights = replace(rights, 'manage_subgroups', 'manage_subgroups,delete_group') where rank = 512");
901 setChange("UPDATE `tt_site_config` SET param_value = '1.17.88', modified = now() where param_name = 'version_db' and param_value = '1.17.87'");
902 setChange("ALTER TABLE `tt_fav_reports` ADD `show_work_units` tinyint(4) NOT NULL DEFAULT '0' AFTER `show_custom_field_1`");
903 setChange("UPDATE `tt_site_config` SET param_value = '1.17.92', modified = now() where param_name = 'version_db' and param_value = '1.17.88'");
904 setChange("ALTER TABLE `tt_log` ADD `group_id` int(11) default NULL AFTER `user_id`");
905 setChange("ALTER TABLE `tt_expense_items` ADD `group_id` int(11) default NULL AFTER `user_id`");
906 setChange("UPDATE `tt_site_config` SET param_value = '1.17.96', modified = now() where param_name = 'version_db' and param_value = '1.17.92'");
909 if ($_POST["cleanup"]) {
911 $mdb2 = getConnection();
912 $inactive_groups = ttTeamHelper::getInactiveGroups();
914 $count = count($inactive_groups);
915 print "$count inactive groups found...<br>\n";
916 for ($i = 0; $i < $count; $i++) {
917 print " deleting group ".$inactive_groups[$i]."<br>\n";
918 $res = ttTeamHelper::delete($inactive_groups[$i]);
921 setChange("OPTIMIZE TABLE tt_client_project_binds");
922 setChange("OPTIMIZE TABLE tt_clients");
923 setChange("OPTIMIZE TABLE tt_config");
924 setChange("OPTIMIZE TABLE tt_custom_field_log");
925 setChange("OPTIMIZE TABLE tt_custom_field_options");
926 setChange("OPTIMIZE TABLE tt_custom_fields");
927 setChange("OPTIMIZE TABLE tt_expense_items");
928 setChange("OPTIMIZE TABLE tt_fav_reports");
929 setChange("OPTIMIZE TABLE tt_invoices");
930 setChange("OPTIMIZE TABLE tt_log");
931 setChange("OPTIMIZE TABLE tt_monthly_quotas");
932 setChange("OPTIMIZE TABLE tt_project_task_binds");
933 setChange("OPTIMIZE TABLE tt_projects");
934 setChange("OPTIMIZE TABLE tt_tasks");
935 setChange("OPTIMIZE TABLE tt_groups");
936 setChange("OPTIMIZE TABLE tt_tmp_refs");
937 setChange("OPTIMIZE TABLE tt_user_project_binds");
938 setChange("OPTIMIZE TABLE tt_users");
939 setChange("OPTIMIZE TABLE tt_roles");
950 <table width="80%" border="1" cellpadding="10" cellspacing="0">
952 <td width="80%"><b>Create database structure (v1.17.96)</b>
953 <br>(applies only to new installations, do not execute when updating)</br></td><td><input type="submit" name="crstructure" value="Create"></td>
959 <table width="80%" border="1" cellpadding="10" cellspacing="0">
961 <td>Update database structure (v0.5 to v0.7)</td><td><input type="submit" name="convert5to7" value="Update"></td>
964 <td>Update database structure (v0.7 to v1.3.3)</td>
965 <td><input type="submit" name="convert7to133" value="Update"><br><input type="submit" name="update_projects" value="Update projects"></td>
968 <td>Update database structure (v1.3.3 to v1.3.40)</td>
969 <td><input type="submit" name="convert133to1340" value="Update"><br><input type="submit" name="update_companies" value="Update companies"></td>
972 <td>Update database structure (v1.3.40 to v1.4.85)</td>
973 <td><input type="submit" name="convert1340to1485" value="Update"><br><input type="submit" name="update_to_team_id" value="Update team_id"></td>
976 <td>Update database structure (v1.4.85 to v1.5.79)</td>
977 <td><input type="submit" name="convert1485to1579" value="Update"></td>
980 <td>Update database structure (v1.5.79 to v1.6)</td>
981 <td><input type="submit" name="convert1579to1600" value="Update"><br><input type="submit" name="update_clients" value="Update clients"><br><input type="submit" name="update_custom_fields" value="Update custom fields"><br><input type="submit" name="update_tracking_mode" value="Update tracking mode"></td>
984 <td>Update database structure (v1.6 to v1.14)</td>
985 <td><input type="submit" name="convert1600to11400" value="Update"><br></td>
988 <td>Update database structure (v1.14 to v1.17.44)</td>
989 <td><input type="submit" name="convert11400to11744" value="Update"><br><input type="submit" name="update_role_id" value="Update role_id"></td>
992 <td>Update database structure (v1.17.44 to v1.17.96)</td>
993 <td><input type="submit" name="convert11744to11796" value="Update"></td>
997 <h2>DB Maintenance</h2>
998 <table width="80%" border="1" cellpadding="10" cellspacing="0">
1000 <td width="80%">Clean up DB from inactive teams</td><td><input type="submit" name="cleanup" value="Clean up"></td>