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');
35 function setChange($sql) {
36 print "<pre>".$sql."</pre>";
37 $mdb2 = getConnection();
38 $affected = $mdb2->exec($sql);
39 if (is_a($affected, 'PEAR_Error'))
40 print "error: ".$affected->getMessage()."<br>";
42 print "successful update<br>\n";
45 if ($request->isGet()) {
46 echo('<h2>Environment Checks</h2>');
48 // Check if WEB-INF/templates_c dir is writable.
49 if (is_writable(APP_DIR.'/WEB-INF/templates_c/')) {
50 echo('WEB-INF/templates_c/ directory is writable.<br>');
52 echo('<font color="red">Error: WEB-INF/templates_c/ directory is not writable.</font><br>');
55 // Require the configuration file with application settings.
56 if (file_exists(APP_DIR."/WEB-INF/config.php")) {
57 echo('WEB-INF/config.php file exists.<br>');
59 // Config file must start with the PHP opening tag. We are checking this because
60 // a Unicode editor may insert a byte order mark (BOM) before it. This is not good as it will
61 // spit white space before output in some situations such as in PDF reports.
62 $file = fopen(APP_DIR.'/WEB-INF/config.php', 'r');
64 if (strcmp('<?php'.PHP_EOL, $line) !== 0) {
65 echo('<font color="red">Error: WEB-INF/config.php file does not start with PHP opening tag.</font><br>');
69 echo('<font color="red">Error: WEB-INF/config.php file does not exist.</font><br>');
72 // Check whether DSN is defined.
74 // echo('DSN is defined as '.DSN.'<br>');
75 echo('DSN is defined.<br>');
77 echo('<font color="red">Error: DSN value is not defined. Check your config.php file.</font><br>');
80 // Check if PHP version is good enough.
81 // $required_version = '5.2.1'; // Something in TCPDF library does not work below this one.
82 $required_version = '5.4.0'; // Week view (week.php) requires 5.4 because of []-way of referencing arrays.
83 // This needs further investigation as we use [] elsewhere without obvious problems.
84 if (version_compare(phpversion(), $required_version, '>=')) {
85 echo('PHP version: '.phpversion().', good enough.<br>');
87 echo('<font color="red">Error: PHP version is not high enough: '.phpversion().'. Required: '.$required_version.'.</font><br>');
90 // Depending on DSN, require either mysqli or mysql extensions.
91 if (strrpos(DSN, 'mysqli://', -strlen(DSN)) !== FALSE) {
92 if (extension_loaded('mysqli')) {
93 echo('mysqli PHP extension is loaded.<br>');
95 echo('<font color="red">Error: mysqli PHP extension is required but is not loaded.</font><br>');
98 if (strrpos(DSN, 'mysql://', -strlen(DSN)) !== FALSE) {
99 if (extension_loaded('mysql')) {
100 echo('mysql PHP extension is loaded.<br>');
102 echo('<font color="red">Error: mysql PHP extension is required but is not loaded.</font><br>');
106 // Check mbstring extension.
107 if (extension_loaded('mbstring')) {
108 echo('mbstring PHP extension is loaded.<br>');
110 echo('<font color="red">Error: mbstring PHP extension is not loaded.</font><br>');
113 // Check gd extension.
114 if (extension_loaded('gd')) {
115 echo('gd PHP extension is loaded.<br>');
117 echo('<font color="red">Error: gd PHP extension is not loaded. It is required for charts plugin.</font><br>');
120 // Check ldap extension.
121 if (AUTH_MODULE == 'ldap') {
122 if (extension_loaded('ldap_')) {
123 echo('ldap PHP extension is loaded.<br>');
125 echo('<font color="red">Error: ldap PHP extension is not loaded. It is required for LDAP authentication.</font><br>');
129 // Check database access.
130 require_once('MDB2.php');
131 $conn = MDB2::connect(DSN);
132 if (!is_a($conn, 'MDB2_Error')) {
133 echo('Connection to database successful.<br>');
135 die('<font color="red">Error: connection to database failed. '.$conn->getMessage().'</font><br>');
138 $conn->setOption('debug', true);
139 $conn->setFetchMode(MDB2_FETCHMODE_ASSOC);
141 $sql = "show tables";
142 $res = $conn->query($sql);
143 if (is_a($res, 'MDB2_Error')) {
144 die('<font color="red">Error: show tables returned an error. '.$res->getMessage().'</font><br>');
147 while ($val = $res->fetchRow()) {
151 echo("There are $tblCnt tables in database.<br>");
153 echo('<font color="red">There are no tables in database. Execute step 1 - Create database structure.</font><br>');
160 print "Processing...<br>\n";
162 if ($_POST["crstructure"]) {
163 $sqlQuery = join("\n", file("mysql.sql"));
164 $sqlQuery = str_replace("TYPE=MyISAM","",$sqlQuery);
165 $queries = explode(";",$sqlQuery);
166 if (is_array($queries)) {
167 foreach ($queries as $query) {
168 $query = trim($query);
169 if (strlen($query)>0) {
176 if ($_POST["convert5to7"]) {
177 setChange("alter table `activity_log` CHANGE al_comment al_comment text");
178 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`))");
179 setChange("alter table `companies` add c_locktime int(4) default -1");
180 setChange("alter table `activity_log` add al_billable tinyint(4) default 0");
181 setChange("alter table `sysconfig` drop INDEX `sysc_name`");
182 setChange("alter table `sysconfig` add sysc_id_u int(4)");
183 setChange("alter table `report_filter_set` add rfs_billable VARCHAR(10)");
184 setChange("ALTER TABLE clients MODIFY clnt_id int(11) NOT NULL AUTO_INCREMENT");
185 setChange("ALTER TABLE `users` ADD `u_show_pie` smallint(2) DEFAULT '1'");
186 setChange("alter table `users` ADD `u_pie_mode` smallint(2) DEFAULT '1'");
187 setChange("alter table users drop `u_aprojects`");
190 if ($_POST["convert7to133"]) {
191 setChange("ALTER TABLE users ADD COLUMN u_lang VARCHAR(20) DEFAULT NULL");
192 setChange("ALTER TABLE users ADD COLUMN u_email VARCHAR(100) DEFAULT NULL");
193 setChange("ALTER TABLE `activity_log` drop `al_proof`");
194 setChange("ALTER TABLE `activity_log` drop `al_charge`");
195 setChange("ALTER TABLE `activities` drop `a_project_id`");
196 setChange("DROP TABLE `activity_status_list`");
197 setChange("DROP TABLE `project_status_list`");
198 setChange("DROP TABLE `user_status_list`");
199 setChange("DROP TABLE `companies_c_id_seq`");
200 setChange("ALTER TABLE projects ADD COLUMN p_activities TEXT");
203 // The update_projects function updates p_activities field in the projects table so that we could
204 // improve performance of the application by using this field instead of activity_bind table.
205 if ($_POST["update_projects"]) {
206 $mdb2 = getConnection();
207 // $sql = "select p_id from projects where p_status = 1 and p_activities is NULL";
208 $sql = "select p_id from projects where p_status = 1";
209 $res = $mdb2->query($sql);
210 if (is_a($res, 'PEAR_Error')) {
211 die($res->getMessage());
213 // Iterate through projects.
214 while ($val = $res->fetchRow()) {
215 $project_id = $val['p_id'];
217 // Get activity binds for project (old way).
218 // $sql = "select ab_id_a from activity_bind where ab_id_p = $project_id";
219 $sql = "select ab_id_a, a_id, a_name from activity_bind
220 inner join activities on (ab_id_a = a_id)
221 where ab_id_p = $project_id order by a_name";
223 $result = $mdb2->query($sql);
224 if (is_a($result, 'PEAR_Error')) {
225 die($result->getMessage());
227 $activity_arr = array();
228 while ($value = $result->fetchRow()) {
229 $activity_arr[] = $value['ab_id_a'];
231 $a_comma_separated = implode(",", $activity_arr); // This is a comma-separated list of associated activity ids.
233 // Re-bind the project to activities (new way).
234 $sql = "update projects set p_activities = ".$mdb2->quote($a_comma_separated)." where p_id = $project_id";
235 $affected = $mdb2->exec($sql);
236 if (is_a($affected, 'PEAR_Error')) {
237 die($affected->getMessage());
242 if ($_POST["convert133to1340"]) {
243 setChange("ALTER TABLE companies ADD COLUMN c_show_pie smallint(2) DEFAULT 1");
244 setChange("ALTER TABLE companies ADD COLUMN c_pie_mode smallint(2) DEFAULT 1");
245 setChange("ALTER TABLE companies ADD COLUMN c_lang varchar(20) default NULL");
248 // The update_companies function sets up c_show_pie, c_pie_mode, and c_lang
249 // fields in the companies table from the corresponding manager fields.
250 if ($_POST["update_companies"]) {
251 $mdb2 = getConnection();
252 // Get all active managers.
253 $sql = "select u_company_id, u_show_pie, u_pie_mode, u_lang from users
254 where u_manager_id is NULL and u_login <> 'admin' and u_company_id is not NULL and u_active = 1";
255 $res = $mdb2->query($sql);
256 if (is_a($res, 'PEAR_Error')) {
257 die($res->getMessage());
259 // Iterate through managers and set fields in the companies table.
260 while ($val = $res->fetchRow()) {
261 $company_id = $val['u_company_id'];
262 $show_pie = $val['u_show_pie'];
263 $pie_mode = $val['u_pie_mode'];
264 $lang = $val['u_lang'];
266 $sql = "update companies set
267 c_show_pie = $show_pie, c_pie_mode = $pie_mode, c_lang = ".$mdb2->quote($lang).
268 " where c_id = $company_id";
270 $result = $mdb2->query($sql);
271 if (is_a($result, 'PEAR_Error')) {
272 die($result->getMessage());
277 if ($_POST["convert1340to1485"]) {
278 setChange("ALTER TABLE users DROP u_show_pie");
279 setChange("ALTER TABLE users DROP u_pie_mode");
280 setChange("ALTER TABLE users DROP u_lang");
281 setChange("ALTER TABLE `users` modify u_login varchar(100) NOT NULL");
282 setChange("ALTER TABLE `users` modify u_active smallint(6) default '1'");
283 setChange("drop index u_login_idx on users");
284 setChange("create unique index u_login_idx on users(u_login, u_active)");
285 setChange("ALTER TABLE companies MODIFY `c_lang` varchar(20) NOT NULL default 'en'");
286 setChange("ALTER TABLE companies ADD COLUMN `c_date_format` varchar(20) NOT NULL default '%Y-%m-%d'");
287 setChange("ALTER TABLE companies ADD COLUMN `c_time_format` varchar(20) NOT NULL default '%H:%M'");
288 setChange("ALTER TABLE companies ADD COLUMN `c_week_start` smallint(2) NOT NULL DEFAULT '0'");
289 setChange("ALTER TABLE clients MODIFY `clnt_status` smallint(6) default '1'");
290 setChange("create unique index clnt_name_idx on clients(clnt_id_um, clnt_name, clnt_status)");
291 setChange("ALTER TABLE projects modify p_status smallint(6) default '1'");
292 setChange("update projects set p_status = NULL where p_status = 1000");
293 setChange("drop index p_manager_idx on projects");
294 setChange("create unique index p_name_idx on projects(p_manager_id, p_name, p_status)");
295 setChange("ALTER TABLE activities modify a_status smallint(6) default '1'");
296 setChange("update activities set a_status = NULL where a_status = 1000");
297 setChange("drop index a_manager_idx on activities");
298 setChange("create unique index a_name_idx on activities(a_manager_id, a_name, a_status)");
299 setChange("RENAME TABLE companies TO teams");
300 setChange("RENAME TABLE teams TO att_teams");
301 setChange("ALTER TABLE att_teams CHANGE c_id id int(11) NOT NULL auto_increment");
302 setChange("RENAME TABLE users TO att_users");
303 setChange("update att_users set u_company_id = 0 where u_company_id is NULL");
304 setChange("ALTER TABLE att_users CHANGE u_company_id team_id int(11) NOT NULL");
305 setChange("RENAME TABLE att_teams TO tt_teams");
306 setChange("RENAME TABLE att_users TO tt_users");
307 setChange("ALTER TABLE tt_teams CHANGE c_name name varchar(80) NOT NULL");
308 setChange("ALTER TABLE `tt_teams` drop `c_www`");
309 setChange("ALTER TABLE `tt_teams` MODIFY `name` varchar(80) default NULL");
310 setChange("ALTER TABLE clients ADD COLUMN `your_name` varchar(255) default NULL");
311 setChange("ALTER TABLE tt_teams ADD COLUMN `address` varchar(255) default NULL");
312 setChange("ALTER TABLE invoice_header ADD COLUMN `client_name` varchar(255) default NULL");
313 setChange("ALTER TABLE invoice_header ADD COLUMN `client_addr` varchar(255) default NULL");
314 setChange("ALTER TABLE report_filter_set ADD COLUMN `rfs_cb_cost` tinyint(4) default '0'");
315 setChange("ALTER TABLE activity_log DROP primary key");
316 setChange("ALTER TABLE activity_log ADD COLUMN `id` bigint NOT NULL auto_increment primary key");
317 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`))");
318 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`))");
319 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`))");
320 setChange("ALTER TABLE tt_users DROP u_level");
321 setChange("ALTER TABLE tt_custom_fields ADD COLUMN `status` tinyint(4) default '1'");
322 setChange("ALTER TABLE report_filter_set ADD COLUMN `rfs_cb_cf_1` tinyint(4) default '0'");
323 setChange("ALTER TABLE tt_teams ADD COLUMN `plugins` varchar(255) default NULL");
324 setChange("ALTER TABLE tt_teams MODIFY c_locktime int(4) default '0'");
325 setChange("ALTER TABLE clients DROP your_name");
326 setChange("ALTER TABLE clients DROP clnt_addr_your");
327 setChange("ALTER TABLE `tt_custom_fields` ADD COLUMN `required` tinyint(4) default '0'");
328 setChange("ALTER TABLE tt_teams DROP c_pie_mode");
329 setChange("RENAME TABLE report_filter_set TO tt_fav_reports");
330 setChange("ALTER TABLE tt_fav_reports CHANGE rfs_id id int(11) unsigned NOT NULL auto_increment");
331 setChange("ALTER TABLE tt_fav_reports CHANGE rfs_name name varchar(200) NOT NULL");
332 setChange("ALTER TABLE tt_fav_reports CHANGE rfs_id_u user_id int(11) NOT NULL");
333 setChange("ALTER TABLE tt_fav_reports CHANGE rfs_id_p project_id int(11) default NULL");
334 setChange("ALTER TABLE tt_fav_reports CHANGE rfs_id_a task_id int(11) default NULL");
335 setChange("ALTER TABLE tt_fav_reports CHANGE rfs_users users text default NULL");
336 setChange("ALTER TABLE tt_fav_reports CHANGE rfs_period period tinyint(4) default NULL");
337 setChange("ALTER TABLE tt_fav_reports CHANGE rfs_period_start period_start date default NULL");
338 setChange("ALTER TABLE tt_fav_reports CHANGE rfs_period_finish period_end date default NULL");
339 setChange("ALTER TABLE tt_fav_reports CHANGE rfs_cb_project show_project tinyint(4) NOT NULL default '0'");
340 setChange("ALTER TABLE tt_fav_reports CHANGE rfs_cb_activity show_task tinyint(4) NOT NULL default '0'");
341 setChange("ALTER TABLE tt_fav_reports CHANGE rfs_cb_note show_note tinyint(4) NOT NULL default '0'");
342 setChange("ALTER TABLE tt_fav_reports CHANGE rfs_cb_start show_start tinyint(4) NOT NULL default '0'");
343 setChange("ALTER TABLE tt_fav_reports CHANGE rfs_cb_finish show_end tinyint(4) NOT NULL default '0'");
344 setChange("ALTER TABLE tt_fav_reports CHANGE rfs_cb_duration show_duration tinyint(4) NOT NULL default '0'");
345 setChange("ALTER TABLE tt_fav_reports CHANGE rfs_cb_cost show_cost tinyint(4) NOT NULL default '0'");
346 setChange("ALTER TABLE tt_fav_reports CHANGE rfs_cb_cf_1 show_custom_field_1 tinyint(4) NOT NULL default '0'");
347 setChange("ALTER TABLE tt_fav_reports CHANGE rfs_cb_idle show_empty_days tinyint(4) NOT NULL default '0'");
348 setChange("ALTER TABLE tt_fav_reports CHANGE rfs_cb_totals_only show_totals_only tinyint(4) NOT NULL default '0'");
349 setChange("ALTER TABLE tt_fav_reports CHANGE rfs_groupby group_by varchar(20) default NULL");
350 setChange("ALTER TABLE tt_fav_reports CHANGE rfs_billable billable tinyint(4) default NULL");
351 setChange("ALTER TABLE projects CHANGE p_activities tasks text default NULL");
352 setChange("ALTER TABLE tt_teams CHANGE c_currency currency varchar(7) default NULL");
353 setChange("ALTER TABLE tt_teams CHANGE c_locktime locktime int(4) default '0'");
354 setChange("ALTER TABLE tt_teams CHANGE c_show_pie show_pie smallint(2) DEFAULT '1'");
355 setChange("ALTER TABLE tt_teams CHANGE c_lang lang varchar(10) NOT NULL default 'en'");
356 setChange("ALTER TABLE tt_teams CHANGE c_date_format date_format varchar(20) NOT NULL default '%Y-%m-%d'");
357 setChange("ALTER TABLE tt_teams CHANGE c_time_format time_format varchar(20) NOT NULL default '%H:%M'");
358 setChange("ALTER TABLE tt_teams CHANGE c_week_start week_start smallint(2) NOT NULL DEFAULT '0'");
359 setChange("ALTER TABLE tt_users CHANGE u_id id int(11) NOT NULL auto_increment");
360 setChange("ALTER TABLE tt_users CHANGE u_timestamp timestamp timestamp NOT NULL");
361 setChange("ALTER TABLE tt_users CHANGE u_login login varchar(50) NOT NULL");
362 setChange("drop index u_login_idx on tt_users");
363 setChange("create unique index login_idx on tt_users(login, u_active)");
364 setChange("ALTER TABLE tt_users CHANGE u_password password varchar(50) default NULL");
365 setChange("ALTER TABLE tt_users CHANGE u_name name varchar(100) default NULL");
366 setChange("ALTER TABLE tt_users CHANGE u_email email varchar(100) default NULL");
367 setChange("ALTER TABLE tt_users CHANGE u_rate rate float(6,2) NOT NULL default '0.00'");
368 setChange("update tt_users set u_active = NULL where u_active = 1000");
369 setChange("ALTER TABLE tt_users CHANGE u_active status tinyint(4) default '1'");
370 setChange("ALTER TABLE tt_teams ADD COLUMN status tinyint(4) default '1'");
371 setChange("ALTER TABLE tt_users ADD COLUMN role int(11) default '4'");
372 setChange("update tt_users set role = 1024 where login = 'admin'");
373 setChange("update tt_users set role = 68 where u_comanager = 1");
374 setChange("update tt_users set role = 324 where u_manager_id is null and login != 'admin'");
375 setChange("ALTER TABLE user_bind CHANGE ub_checked status tinyint(4) default '1'");
376 setChange("ALTER TABLE activities ADD COLUMN team_id int(11) NOT NULL");
377 setChange("ALTER TABLE clients ADD COLUMN team_id int(11) NOT NULL");
378 setChange("ALTER TABLE projects ADD COLUMN team_id int(11) NOT NULL");
381 // The update_to_team_id function sets team_id field projects, activities, and clients tables.
382 if ($_POST["update_to_team_id"]) {
383 $mdb2 = getConnection();
386 $sql = "select p_id, p_manager_id from projects where team_id = 0 limit 1000";
387 $res = $mdb2->query($sql);
388 if (is_a($res, 'PEAR_Error')) {
389 die($res->getMessage());
391 // Iterate through projects.
392 $projects_updated = 0;
393 while ($val = $res->fetchRow()) {
394 $project_id = $val['p_id'];
395 $manager_id = $val['p_manager_id'];
397 $sql = "select team_id from tt_users where id = $manager_id";
398 $res2 = $mdb2->query($sql);
399 if (is_a($res2, 'PEAR_Error')) {
400 die($res2->getMessage());
402 $val2 = $res2->fetchRow();
403 $team_id = $val2['team_id'];
406 $sql = "update projects set team_id = $team_id where p_id = $project_id";
407 $affected = $mdb2->exec($sql);
408 if (is_a($affected, 'PEAR_Error')) {
409 die($affected->getMessage());
411 $projects_updated += $affected;
414 print "Updated $projects_updated projects...<br>\n";
417 $sql = "select a_id, a_manager_id from activities where team_id = 0 limit 1000";
418 $res = $mdb2->query($sql);
419 if (is_a($res, 'PEAR_Error')) {
420 die($res->getMessage());
422 // Iterate through tasks.
424 while ($val = $res->fetchRow()) {
425 $task_id = $val['a_id'];
426 $manager_id = $val['a_manager_id'];
428 $sql = "select team_id from tt_users where id = $manager_id";
429 $res2 = $mdb2->query($sql);
430 if (is_a($res2, 'PEAR_Error')) {
431 die($res2->getMessage());
433 $val2 = $res2->fetchRow();
434 $team_id = $val2['team_id'];
437 $sql = "update activities set team_id = $team_id where a_id = $task_id";
438 $affected = $mdb2->exec($sql);
439 if (is_a($affected, 'PEAR_Error')) {
440 die($affected->getMessage());
442 $tasks_updated += $affected;
445 print "Updated $tasks_updated tasks...<br>\n";
448 $sql = "select clnt_id, clnt_id_um from clients where team_id = 0 limit 1000";
449 $res = $mdb2->query($sql);
450 if (is_a($res, 'PEAR_Error')) {
451 die($res->getMessage());
453 // Iterate through clients.
454 $clients_updated = 0;
455 while ($val = $res->fetchRow()) {
456 $client_id = $val['clnt_id'];
457 $manager_id = $val['clnt_id_um'];
459 $sql = "select team_id from tt_users where id = $manager_id";
460 $res2 = $mdb2->query($sql);
461 if (is_a($res2, 'PEAR_Error')) {
462 die($res2->getMessage());
464 $val2 = $res2->fetchRow();
465 $team_id = $val2['team_id'];
468 $sql = "update clients set team_id = $team_id where clnt_id = $client_id";
469 $affected = $mdb2->exec($sql);
470 if (is_a($affected, 'PEAR_Error')) {
471 die($affected->getMessage());
473 $clients_updated += $affected;
476 print "Updated $clients_updated clients...<br>\n";
479 if ($_POST["convert1485to1579"]) {
480 setChange("ALTER TABLE tt_fav_reports MODIFY id int(11) NOT NULL auto_increment");
481 setChange("RENAME TABLE clients TO tt_clients");
482 setChange("ALTER TABLE tt_clients CHANGE clnt_id id int(11) NOT NULL AUTO_INCREMENT");
483 setChange("ALTER TABLE tt_clients CHANGE clnt_status status tinyint(4) default '1'");
484 setChange("ALTER TABLE tt_clients DROP clnt_id_um");
485 setChange("ALTER TABLE tt_clients CHANGE clnt_name name varchar(80) NOT NULL");
486 setChange("drop index clnt_name_idx on tt_clients");
487 setChange("drop index client_name_idx on tt_clients");
488 setChange("create unique index client_name_idx on tt_clients(team_id, name, status)");
489 setChange("ALTER TABLE tt_teams ADD COLUMN `timestamp` timestamp NOT NULL");
490 setChange("ALTER TABLE tt_clients CHANGE clnt_addr_cust address varchar(255) default NULL");
491 setChange("ALTER TABLE tt_clients DROP clnt_discount");
492 setChange("ALTER TABLE tt_clients DROP clnt_comment");
493 setChange("ALTER TABLE tt_clients DROP clnt_fsubtotals");
494 setChange("ALTER TABLE tt_clients CHANGE clnt_tax tax float(6,2) NOT NULL default '0.00'");
495 setChange("ALTER TABLE activity_log ADD COLUMN client_id int(11) default NULL");
496 setChange("ALTER TABLE tt_teams DROP show_pie");
497 setChange("ALTER TABLE tt_fav_reports CHANGE group_by sort_by varchar(20) default 'date'");
498 setChange("RENAME TABLE tmp_refs TO tt_tmp_refs");
499 setChange("ALTER TABLE tt_tmp_refs CHANGE tr_created timestamp timestamp NOT NULL");
500 setChange("ALTER TABLE tt_tmp_refs CHANGE tr_code ref char(32) NOT NULL default ''");
501 setChange("ALTER TABLE tt_tmp_refs CHANGE tr_userid user_id int(11) NOT NULL");
502 setChange("RENAME TABLE projects TO tt_projects");
503 setChange("ALTER TABLE tt_projects CHANGE p_id id int(11) NOT NULL auto_increment");
504 setChange("ALTER TABLE tt_projects DROP p_timestamp");
505 setChange("ALTER TABLE tt_projects CHANGE p_name name varchar(80) NOT NULL");
506 setChange("ALTER TABLE tt_projects CHANGE p_status status tinyint(4) default '1'");
507 setChange("drop index p_name_idx on tt_projects");
508 setChange("create unique index project_idx on tt_projects(team_id, name, status)");
509 setChange("RENAME TABLE activities TO tt_tasks");
510 setChange("ALTER TABLE tt_tasks CHANGE a_id id int(11) NOT NULL auto_increment");
511 setChange("ALTER TABLE tt_tasks DROP a_timestamp");
512 setChange("ALTER TABLE tt_tasks CHANGE a_name name varchar(80) NOT NULL");
513 setChange("ALTER TABLE tt_tasks CHANGE a_status status tinyint(4) default '1'");
514 setChange("drop index a_name_idx on tt_tasks");
515 setChange("create unique index task_idx on tt_tasks(team_id, name, status)");
516 setChange("RENAME TABLE invoice_header TO tt_invoice_headers");
517 setChange("ALTER TABLE tt_invoice_headers CHANGE ih_user_id user_id int(11) NOT NULL");
518 setChange("ALTER TABLE tt_invoice_headers CHANGE ih_number number varchar(20) default NULL");
519 setChange("ALTER TABLE tt_invoice_headers DROP ih_addr_your");
520 setChange("ALTER TABLE tt_invoice_headers DROP ih_addr_cust");
521 setChange("ALTER TABLE tt_invoice_headers CHANGE ih_comment comment varchar(255) default NULL");
522 setChange("ALTER TABLE tt_invoice_headers CHANGE ih_tax tax float(6,2) default '0.00'");
523 setChange("ALTER TABLE tt_invoice_headers CHANGE ih_discount discount float(6,2) default '0.00'");
524 setChange("ALTER TABLE tt_invoice_headers CHANGE ih_fsubtotals subtotals tinyint(4) NOT NULL default '0'");
525 setChange("ALTER TABLE tt_users DROP u_comanager");
526 setChange("ALTER TABLE tt_tasks DROP a_manager_id");
527 setChange("ALTER TABLE tt_projects DROP p_manager_id");
528 setChange("ALTER TABLE tt_users DROP u_manager_id");
529 setChange("ALTER TABLE activity_bind DROP ab_id");
530 setChange("RENAME TABLE activity_bind TO tt_project_task_binds");
531 setChange("ALTER TABLE tt_project_task_binds CHANGE ab_id_p project_id int(11) NOT NULL");
532 setChange("ALTER TABLE tt_project_task_binds CHANGE ab_id_a task_id int(11) NOT NULL");
533 setChange("RENAME TABLE user_bind TO tt_user_project_binds");
534 setChange("ALTER TABLE tt_user_project_binds CHANGE ub_rate rate float(6,2) NOT NULL default '0.00'");
535 setChange("ALTER TABLE tt_user_project_binds CHANGE ub_id_p project_id int(11) NOT NULL");
536 setChange("ALTER TABLE tt_user_project_binds CHANGE ub_id_u user_id int(11) NOT NULL");
537 setChange("ALTER TABLE tt_user_project_binds CHANGE ub_id id int(11) NOT NULL auto_increment");
538 setChange("CREATE TABLE `tt_client_project_binds` (`client_id` int(11) NOT NULL, `project_id` int(11) NOT NULL)");
539 setChange("ALTER TABLE tt_user_project_binds MODIFY rate float(6,2) default '0.00'");
540 setChange("ALTER TABLE tt_clients MODIFY tax float(6,2) default '0.00'");
541 setChange("RENAME TABLE activity_log TO tt_log");
542 setChange("ALTER TABLE tt_log CHANGE al_timestamp timestamp timestamp NOT NULL");
543 setChange("ALTER TABLE tt_log CHANGE al_user_id user_id int(11) NOT NULL");
544 setChange("ALTER TABLE tt_log CHANGE al_date date date NOT NULL");
545 setChange("drop index al_date_idx on tt_log");
546 setChange("create index date_idx on tt_log(date)");
547 setChange("ALTER TABLE tt_log CHANGE al_from start time default NULL");
548 setChange("ALTER TABLE tt_log CHANGE al_duration duration time default NULL");
549 setChange("ALTER TABLE tt_log CHANGE al_project_id project_id int(11) NOT NULL");
550 setChange("ALTER TABLE tt_log MODIFY project_id int(11) default NULL");
551 setChange("ALTER TABLE tt_log CHANGE al_activity_id task_id int(11) default NULL");
552 setChange("ALTER TABLE tt_log CHANGE al_comment comment text");
553 setChange("ALTER TABLE tt_log CHANGE al_billable billable tinyint(4) default '0'");
554 setChange("drop index al_user_id_idx on tt_log");
555 setChange("drop index al_project_id_idx on tt_log");
556 setChange("drop index al_activity_id_idx on tt_log");
557 setChange("create index user_idx on tt_log(user_id)");
558 setChange("create index project_idx on tt_log(project_id)");
559 setChange("create index task_idx on tt_log(task_id)");
560 setChange("ALTER TABLE tt_custom_field_log CHANGE al_id log_id bigint NOT NULL");
561 setChange("RENAME TABLE sysconfig TO tt_config");
562 setChange("ALTER TABLE tt_config DROP sysc_id");
563 setChange("ALTER TABLE tt_config CHANGE sysc_id_u user_id int(11) NOT NULL");
564 setChange("ALTER TABLE tt_config CHANGE sysc_name param_name varchar(32) NOT NULL");
565 setChange("ALTER TABLE tt_config CHANGE sysc_value param_value varchar(80) default NULL");
566 setChange("create unique index param_idx on tt_config(user_id, param_name)");
567 setChange("ALTER TABLE tt_log ADD COLUMN invoice_id int(11) default NULL");
568 setChange("ALTER TABLE tt_projects ADD COLUMN description varchar(255) default NULL");
569 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`))");
570 setChange("ALTER TABLE tt_invoices drop number");
571 setChange("ALTER TABLE tt_invoices drop client_name");
572 setChange("ALTER TABLE tt_invoices drop client_addr");
573 setChange("ALTER TABLE tt_invoices drop comment");
574 setChange("ALTER TABLE tt_invoices drop tax");
575 setChange("ALTER TABLE tt_invoices ADD COLUMN name varchar(80) NOT NULL");
576 setChange("ALTER TABLE tt_invoices ADD COLUMN client_id int(11) NOT NULL");
577 setChange("ALTER TABLE tt_invoices ADD COLUMN start_date date NOT NULL");
578 setChange("ALTER TABLE tt_invoices ADD COLUMN end_date date NOT NULL");
579 setChange("create unique index name_idx on tt_invoices(team_id, name)");
580 setChange("drop index ub_id_u on tt_user_project_binds");
581 setChange("create unique index bind_idx on tt_user_project_binds(user_id, project_id)");
582 setChange("create index client_idx on tt_log(client_id)");
583 setChange("create index invoice_idx on tt_log(invoice_id)");
586 if ($_POST["convert1579to1600"]) {
587 setChange("ALTER TABLE tt_invoices ADD COLUMN date date NOT NULL");
588 setChange("ALTER TABLE tt_teams ADD COLUMN custom_logo tinyint(4) default '0'");
589 setChange("ALTER TABLE tt_tasks ADD COLUMN description varchar(255) default NULL");
590 setChange("ALTER TABLE tt_projects MODIFY name varchar(80) COLLATE utf8_bin NOT NULL");
591 setChange("ALTER TABLE tt_users MODIFY login varchar(50) COLLATE utf8_bin NOT NULL");
592 setChange("ALTER TABLE tt_tasks MODIFY name varchar(80) COLLATE utf8_bin NOT NULL");
593 setChange("ALTER TABLE tt_invoices MODIFY name varchar(80) COLLATE utf8_bin NOT NULL");
594 setChange("ALTER TABLE tt_clients MODIFY name varchar(80) COLLATE utf8_bin NOT NULL");
595 setChange("ALTER TABLE tt_clients ADD COLUMN projects text default NULL");
596 setChange("ALTER TABLE tt_custom_field_log ADD COLUMN option_id int(11) default NULL");
597 setChange("ALTER TABLE tt_teams ADD COLUMN tracking_mode smallint(2) NOT NULL DEFAULT '2'");
598 setChange("ALTER TABLE tt_teams ADD COLUMN record_type smallint(2) NOT NULL DEFAULT '0'");
599 setChange("ALTER TABLE tt_invoices DROP start_date");
600 setChange("ALTER TABLE tt_invoices DROP end_date");
603 // The update_clients function updates projects field in tt_clients table.
604 if ($_POST["update_clients"]) {
605 $mdb2 = getConnection();
606 $sql = "select id from tt_clients where status = 1 or status = 0";
607 $res = $mdb2->query($sql);
608 if (is_a($res, 'PEAR_Error')) {
609 die($res->getMessage());
612 $clients_updated = 0;
613 // Iterate through clients.
614 while ($val = $res->fetchRow()) {
615 $client_id = $val['id'];
617 // Get projects binds for client.
618 $sql = "select cpb.project_id from tt_client_project_binds cpb
619 left join tt_projects p on (p.id = cpb.project_id)
620 where cpb.client_id = $client_id order by p.name";
622 $result = $mdb2->query($sql);
623 if (is_a($result, 'PEAR_Error'))
624 die($result->getMessage());
626 $project_arr = array();
627 while ($value = $result->fetchRow()) {
628 $project_arr[] = $value['project_id'];
630 $comma_separated = implode(',', $project_arr); // This is a comma-separated list of associated project ids.
632 // Update the projects field.
633 $sql = "update tt_clients set projects = ".$mdb2->quote($comma_separated)." where id = $client_id";
634 $affected = $mdb2->exec($sql);
635 if (is_a($affected, 'PEAR_Error'))
636 die($affected->getMessage());
637 $clients_updated += $affected;
639 print "Updated $clients_updated clients...<br>\n";
642 // The update_custom_fields function updates option_id field field in tt_custom_field_log table.
643 if ($_POST['update_custom_fields']) {
644 $mdb2 = getConnection();
645 $sql = "update tt_custom_field_log set option_id = value where field_id in (select id from tt_custom_fields where type = 2)";
646 $affected = $mdb2->exec($sql);
647 if (is_a($affected, 'PEAR_Error'))
648 die($affected->getMessage());
650 print "Updated $affected custom fields...<br>\n";
653 // The update_tracking_mode function sets the tracking_mode field in tt_teams table to 2 (== MODE_PROJECTS_AND_TASKS).
654 if ($_POST['update_tracking_mode']) {
655 $mdb2 = getConnection();
656 $sql = "update tt_teams set tracking_mode = 2 where tracking_mode = 0";
657 $affected = $mdb2->exec($sql);
658 if (is_a($affected, 'PEAR_Error'))
659 die($affected->getMessage());
661 print "Updated $affected teams...<br>\n";
664 if ($_POST["convert1600to11400"]) {
665 setChange("DROP TABLE IF EXISTS tt_invoice_headers");
666 setChange("ALTER TABLE tt_fav_reports ADD COLUMN `client_id` int(11) default NULL");
667 setChange("ALTER TABLE tt_fav_reports ADD COLUMN `cf_1_option_id` int(11) default NULL");
668 setChange("ALTER TABLE tt_fav_reports ADD COLUMN `show_client` tinyint(4) NOT NULL default '0'");
669 setChange("ALTER TABLE tt_fav_reports ADD COLUMN `show_invoice` tinyint(4) NOT NULL default '0'");
670 setChange("ALTER TABLE tt_fav_reports ADD COLUMN `group_by` varchar(20) default NULL");
671 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`))");
672 setChange("create index date_idx on tt_expense_items(date)");
673 setChange("create index user_idx on tt_expense_items(user_id)");
674 setChange("create index client_idx on tt_expense_items(client_id)");
675 setChange("create index project_idx on tt_expense_items(project_id)");
676 setChange("create index invoice_idx on tt_expense_items(invoice_id)");
677 setChange("ALTER TABLE tt_fav_reports DROP sort_by");
678 setChange("ALTER TABLE tt_fav_reports DROP show_empty_days");
679 setChange("ALTER TABLE tt_invoices DROP discount");
680 setChange("ALTER TABLE tt_users ADD COLUMN `client_id` int(11) default NULL");
681 setChange("ALTER TABLE tt_teams ADD COLUMN `decimal_mark` char(1) NOT NULL default '.'");
682 setChange("ALTER TABLE tt_fav_reports ADD COLUMN `invoice` tinyint(4) default NULL");
683 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`))");
684 setChange("ALTER TABLE tt_cron ADD COLUMN `team_id` int(11) NOT NULL");
685 setChange("create index client_idx on tt_client_project_binds(client_id)");
686 setChange("create index project_idx on tt_client_project_binds(project_id)");
687 setChange("ALTER TABLE tt_log ADD COLUMN status tinyint(4) default '1'");
688 setChange("ALTER TABLE tt_custom_field_log ADD COLUMN status tinyint(4) default '1'");
689 setChange("ALTER TABLE tt_expense_items ADD COLUMN status tinyint(4) default '1'");
690 setChange("ALTER TABLE tt_invoices ADD COLUMN status tinyint(4) default '1'");
691 setChange("DROP INDEX name_idx on tt_invoices");
692 setChange("create unique index name_idx on tt_invoices(team_id, name, status)");
693 setChange("ALTER TABLE tt_teams ADD COLUMN lock_spec varchar(255) default NULL");
694 setChange("ALTER TABLE tt_teams DROP locktime");
695 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`))");
696 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");
697 setChange("ALTER TABLE `tt_teams` ADD `workday_hours` SMALLINT NULL DEFAULT '8' AFTER `lock_spec`");
698 setChange("RENAME TABLE tt_monthly_quota TO tt_monthly_quotas");
699 setChange("ALTER TABLE tt_expense_items modify `name` text NOT NULL");
700 setChange("ALTER TABLE `tt_teams` ADD `uncompleted_indicators` SMALLINT(2) NOT NULL DEFAULT '0' AFTER `record_type`");
701 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`))");
702 setChange("ALTER TABLE `tt_teams` ADD `task_required` smallint(2) NOT NULL DEFAULT '0' AFTER `tracking_mode`");
703 setChange("ALTER TABLE `tt_teams` ADD `project_required` smallint(2) NOT NULL DEFAULT '0' AFTER `tracking_mode`");
704 setChange("ALTER TABLE `tt_cron` ADD `report_condition` varchar(255) default NULL AFTER `email`");
705 setChange("ALTER TABLE `tt_fav_reports` ADD `status` tinyint(4) default '1'");
706 setChange("ALTER TABLE `tt_teams` ADD `bcc_email` varchar(100) default NULL AFTER `uncompleted_indicators`");
707 setChange("ALTER TABLE `tt_cron` ADD `cc` varchar(100) default NULL AFTER `email`");
708 setChange("ALTER TABLE `tt_cron` ADD `subject` varchar(100) default NULL AFTER `cc`");
709 setChange("ALTER TABLE `tt_log` ADD `paid` tinyint(4) NULL default '0' AFTER `billable`");
712 if ($_POST["convert11400to11710"]) {
713 setChange("ALTER TABLE `tt_teams` DROP `address`");
714 setChange("ALTER TABLE `tt_fav_reports` ADD `report_spec` text default NULL AFTER `user_id`");
715 setChange("ALTER TABLE `tt_fav_reports` ADD `paid_status` tinyint(4) default NULL AFTER `invoice`");
716 setChange("ALTER TABLE `tt_fav_reports` ADD `show_paid` tinyint(4) NOT NULL DEFAULT '0' AFTER `show_invoice`");
717 setChange("ALTER TABLE `tt_expense_items` ADD `paid` tinyint(4) NULL default '0' AFTER `invoice_id`");
718 setChange("ALTER TABLE `tt_monthly_quotas` MODIFY `quota` decimal(5,2) NOT NULL");
719 setChange("ALTER TABLE `tt_teams` MODIFY `workday_hours` decimal(5,2) DEFAULT '8.00'");
722 if ($_POST["cleanup"]) {
724 $mdb2 = getConnection();
725 $inactive_teams = ttTeamHelper::getInactiveTeams();
727 $count = count($inactive_teams);
728 print "$count inactive teams found...<br>\n";
729 for ($i = 0; $i < $count; $i++) {
730 print " deleting team ".$inactive_teams[$i]."<br>\n";
731 $res = ttTeamHelper::delete($inactive_teams[$i]);
734 setChange("OPTIMIZE TABLE tt_client_project_binds");
735 setChange("OPTIMIZE TABLE tt_clients");
736 setChange("OPTIMIZE TABLE tt_config");
737 setChange("OPTIMIZE TABLE tt_custom_field_log");
738 setChange("OPTIMIZE TABLE tt_custom_field_options");
739 setChange("OPTIMIZE TABLE tt_custom_fields");
740 setChange("OPTIMIZE TABLE tt_expense_items");
741 setChange("OPTIMIZE TABLE tt_fav_reports");
742 setChange("OPTIMIZE TABLE tt_invoices");
743 setChange("OPTIMIZE TABLE tt_log");
744 setChange("OPTIMIZE TABLE tt_monthly_quotas");
745 setChange("OPTIMIZE TABLE tt_project_task_binds");
746 setChange("OPTIMIZE TABLE tt_projects");
747 setChange("OPTIMIZE TABLE tt_tasks");
748 setChange("OPTIMIZE TABLE tt_teams");
749 setChange("OPTIMIZE TABLE tt_tmp_refs");
750 setChange("OPTIMIZE TABLE tt_user_project_binds");
751 setChange("OPTIMIZE TABLE tt_users");
762 <table width="80%" border="1" cellpadding="10" cellspacing="0">
764 <td width="80%"><b>Create database structure (v1.17.10)</b>
765 <br>(applies only to new installations, do not execute when updating)</br></td><td><input type="submit" name="crstructure" value="Create"></td>
771 <table width="80%" border="1" cellpadding="10" cellspacing="0">
773 <td>Update database structure (v0.5 to v0.7)</td><td><input type="submit" name="convert5to7" value="Update"></td>
776 <td>Update database structure (v0.7 to v1.3.3)</td>
777 <td><input type="submit" name="convert7to133" value="Update"><br><input type="submit" name="update_projects" value="Update projects"></td>
780 <td>Update database structure (v1.3.3 to v1.3.40)</td>
781 <td><input type="submit" name="convert133to1340" value="Update"><br><input type="submit" name="update_companies" value="Update companies"></td>
784 <td>Update database structure (v1.3.40 to v1.4.85)</td>
785 <td><input type="submit" name="convert1340to1485" value="Update"><br><input type="submit" name="update_to_team_id" value="Update team_id"></td>
788 <td>Update database structure (v1.4.85 to v1.5.79)</td>
789 <td><input type="submit" name="convert1485to1579" value="Update"></td>
792 <td>Update database structure (v1.5.79 to v1.6)</td>
793 <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>
796 <td>Update database structure (v1.6 to v1.14)</td>
797 <td><input type="submit" name="convert1600to11400" value="Update"><br></td>
800 <td>Update database structure (v1.14 to v1.17.10)</td>
801 <td><input type="submit" name="convert11400to11710" value="Update"><br></td>
805 <h2>DB Maintenance</h2>
806 <table width="80%" border="1" cellpadding="10" cellspacing="0">
808 <td width="80%">Clean up DB from inactive teams</td><td><input type="submit" name="cleanup" value="Clean up"></td>