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->isPost()) {
46 echo('<h2>Environment check</h2>');
48 // Require the configuration file with application settings.
49 if (file_exists(APP_DIR."/WEB-INF/config.php")) {
50 echo('WEB-INF/config.php file exists.<br>');
52 echo('<font color="red">Error: WEB-INF/config.php file does not exist.</font><br>');
55 // Check whether DSN is defined.
57 // echo('DSN is defined as '.DSN.'<br>');
58 echo('DSN is defined.<br>');
60 echo('<font color="red">Error: DSN value is not defined. Check your config.php file.</font><br>');
63 // Depending on DSN, require either mysqli or mysql extensions.
64 if (strrpos(DSN, 'mysqli://', -strlen(DSN)) !== FALSE) {
65 if (extension_loaded('mysqli')) {
66 echo('mysqli PHP extension is loaded.<br>');
68 echo('<font color="red">Error: mysqli PHP extension is required but is not loaded.</font><br>');
71 if (strrpos(DSN, 'mysql://', -strlen(DSN)) !== FALSE) {
72 if (extension_loaded('mysql')) {
73 echo('mysql PHP extension is loaded.<br>');
75 echo('<font color="red">Error: mysql PHP extension is required but is not loaded.</font><br>');
79 // Check mbstring extension.
80 if (extension_loaded('mbstring')) {
81 echo('mbstring PHP extension is loaded.<br>');
83 echo('<font color="red">Error: mbstring PHP extension is not loaded.</font><br>');
86 // Check gd extension.
87 if (extension_loaded('gd')) {
88 echo('gd PHP extension is loaded.<br>');
90 echo('<font color="red">Error: gd PHP extension is not loaded. It is required for charts plugin.</font><br>');
93 // Check ldap extension.
94 if (AUTH_MODULE == 'ldap') {
95 if (extension_loaded('ldap_')) {
96 echo('ldap PHP extension is loaded.<br>');
98 echo('<font color="red">Error: ldap PHP extension is not loaded. It is required for LDAP authentication.</font><br>');
102 // Check database access.
103 require_once('MDB2.php');
104 $conn = MDB2::connect(DSN);
105 if (!is_a($conn, 'MDB2_Error')) {
106 echo('Connection to database successful.<br>');
108 die('<font color="red">Error: connection to database failed. '.$conn->getMessage().'</font><br>');
111 $conn->setOption('debug', true);
112 $conn->setFetchMode(MDB2_FETCHMODE_ASSOC);
114 $sql = "show tables";
115 $res = $conn->query($sql);
116 if (is_a($res, 'MDB2_Error')) {
117 die('<font color="red">Error: show tables returned an error. '.$res->getMessage().'</font><br>');
120 while ($val = $res->fetchRow()) {
124 echo("There are $tblCnt tables in database.<br>");
126 echo('<font color="red">There are no tables in database. Execute step 1 - Create database structure.</font><br>');
133 print "Processing...<br>\n";
135 if ($_POST["crstructure"]) {
136 $sqlQuery = join("\n", file("mysql.sql"));
137 $sqlQuery = str_replace("TYPE=MyISAM","",$sqlQuery);
138 $queries = explode(";",$sqlQuery);
139 if (is_array($queries)) {
140 foreach ($queries as $query) {
141 $query = trim($query);
142 if (strlen($query)>0) {
149 if ($_POST["convert5to7"]) {
150 setChange("alter table `activity_log` CHANGE al_comment al_comment BLOB");
151 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`))");
152 setChange("alter table `companies` add c_locktime int(4) default -1");
153 setChange("alter table `activity_log` add al_billable tinyint(4) default 0");
154 setChange("alter table `sysconfig` drop INDEX `sysc_name`");
155 setChange("alter table `sysconfig` add sysc_id_u int(4)");
156 setChange("alter table `report_filter_set` add rfs_billable VARCHAR(10)");
157 setChange("ALTER TABLE clients MODIFY clnt_id int(11) NOT NULL AUTO_INCREMENT");
158 setChange("ALTER TABLE `users` ADD `u_show_pie` smallint(2) DEFAULT '1'");
159 setChange("alter table `users` ADD `u_pie_mode` smallint(2) DEFAULT '1'");
160 setChange("alter table users drop `u_aprojects`");
163 if ($_POST["convert7to133"]) {
164 setChange("ALTER TABLE users ADD COLUMN u_lang VARCHAR(20) DEFAULT NULL");
165 setChange("ALTER TABLE users ADD COLUMN u_email VARCHAR(100) DEFAULT NULL");
166 setChange("ALTER TABLE `activity_log` drop `al_proof`");
167 setChange("ALTER TABLE `activity_log` drop `al_charge`");
168 setChange("ALTER TABLE `activities` drop `a_project_id`");
169 setChange("DROP TABLE `activity_status_list`");
170 setChange("DROP TABLE `project_status_list`");
171 setChange("DROP TABLE `user_status_list`");
172 setChange("DROP TABLE `companies_c_id_seq`");
173 setChange("ALTER TABLE projects ADD COLUMN p_activities TEXT");
176 // The update_projects function updates p_activities field in the projects table so that we could
177 // improve performance of the application by using this field instead of activity_bind table.
178 if ($_POST["update_projects"]) {
179 $mdb2 = getConnection();
180 // $sql = "select p_id from projects where p_status = 1 and p_activities is NULL";
181 $sql = "select p_id from projects where p_status = 1";
182 $res = $mdb2->query($sql);
183 if (is_a($res, 'PEAR_Error')) {
184 die($res->getMessage());
186 // Iterate through projects.
187 while ($val = $res->fetchRow()) {
188 $project_id = $val['p_id'];
190 // Get activity binds for project (old way).
191 // $sql = "select ab_id_a from activity_bind where ab_id_p = $project_id";
192 $sql = "select ab_id_a, a_id, a_name from activity_bind
193 inner join activities on (ab_id_a = a_id)
194 where ab_id_p = $project_id order by a_name";
196 $result = $mdb2->query($sql);
197 if (is_a($result, 'PEAR_Error')) {
198 die($result->getMessage());
200 $activity_arr = array();
201 while ($value = $result->fetchRow()) {
202 $activity_arr[] = $value['ab_id_a'];
204 $a_comma_separated = implode(",", $activity_arr); // This is a comma-separated list of associated activity ids.
206 // Re-bind the project to activities (new way).
207 $sql = "update projects set p_activities = ".$mdb2->quote($a_comma_separated)." where p_id = $project_id";
208 $affected = $mdb2->exec($sql);
209 if (is_a($affected, 'PEAR_Error')) {
210 die($affected->getMessage());
215 if ($_POST["convert133to1340"]) {
216 setChange("ALTER TABLE companies ADD COLUMN c_show_pie smallint(2) DEFAULT 1");
217 setChange("ALTER TABLE companies ADD COLUMN c_pie_mode smallint(2) DEFAULT 1");
218 setChange("ALTER TABLE companies ADD COLUMN c_lang varchar(20) default NULL");
221 // The update_companies function sets up c_show_pie, c_pie_mode, and c_lang
222 // fields in the companies table from the corresponding manager fields.
223 if ($_POST["update_companies"]) {
224 $mdb2 = getConnection();
225 // Get all active managers.
226 $sql = "select u_company_id, u_show_pie, u_pie_mode, u_lang from users
227 where u_manager_id is NULL and u_login <> 'admin' and u_company_id is not NULL and u_active = 1";
228 $res = $mdb2->query($sql);
229 if (is_a($res, 'PEAR_Error')) {
230 die($res->getMessage());
232 // Iterate through managers and set fields in the companies table.
233 while ($val = $res->fetchRow()) {
234 $company_id = $val['u_company_id'];
235 $show_pie = $val['u_show_pie'];
236 $pie_mode = $val['u_pie_mode'];
237 $lang = $val['u_lang'];
239 $sql = "update companies set
240 c_show_pie = $show_pie, c_pie_mode = $pie_mode, c_lang = ".$mdb2->quote($lang).
241 " where c_id = $company_id";
243 $result = $mdb2->query($sql);
244 if (is_a($result, 'PEAR_Error')) {
245 die($result->getMessage());
250 if ($_POST["convert1340to1485"]) {
251 setChange("ALTER TABLE users DROP u_show_pie");
252 setChange("ALTER TABLE users DROP u_pie_mode");
253 setChange("ALTER TABLE users DROP u_lang");
254 setChange("ALTER TABLE `users` modify u_login varchar(100) NOT NULL");
255 setChange("ALTER TABLE `users` modify u_active smallint(6) default '1'");
256 setChange("drop index u_login_idx on users");
257 setChange("create unique index u_login_idx on users(u_login, u_active)");
258 setChange("ALTER TABLE companies MODIFY `c_lang` varchar(20) NOT NULL default 'en'");
259 setChange("ALTER TABLE companies ADD COLUMN `c_date_format` varchar(20) NOT NULL default '%Y-%m-%d'");
260 setChange("ALTER TABLE companies ADD COLUMN `c_time_format` varchar(20) NOT NULL default '%H:%M'");
261 setChange("ALTER TABLE companies ADD COLUMN `c_week_start` smallint(2) NOT NULL DEFAULT '0'");
262 setChange("ALTER TABLE clients MODIFY `clnt_status` smallint(6) default '1'");
263 setChange("create unique index clnt_name_idx on clients(clnt_id_um, clnt_name, clnt_status)");
264 setChange("ALTER TABLE projects modify p_status smallint(6) default '1'");
265 setChange("update projects set p_status = NULL where p_status = 1000");
266 setChange("drop index p_manager_idx on projects");
267 setChange("create unique index p_name_idx on projects(p_manager_id, p_name, p_status)");
268 setChange("ALTER TABLE activities modify a_status smallint(6) default '1'");
269 setChange("update activities set a_status = NULL where a_status = 1000");
270 setChange("drop index a_manager_idx on activities");
271 setChange("create unique index a_name_idx on activities(a_manager_id, a_name, a_status)");
272 setChange("RENAME TABLE companies TO teams");
273 setChange("RENAME TABLE teams TO att_teams");
274 setChange("ALTER TABLE att_teams CHANGE c_id id int(11) NOT NULL auto_increment");
275 setChange("RENAME TABLE users TO att_users");
276 setChange("update att_users set u_company_id = 0 where u_company_id is NULL");
277 setChange("ALTER TABLE att_users CHANGE u_company_id team_id int(11) NOT NULL");
278 setChange("RENAME TABLE att_teams TO tt_teams");
279 setChange("RENAME TABLE att_users TO tt_users");
280 setChange("ALTER TABLE tt_teams CHANGE c_name name varchar(80) NOT NULL");
281 setChange("ALTER TABLE `tt_teams` drop `c_www`");
282 setChange("ALTER TABLE `tt_teams` MODIFY `name` varchar(80) default NULL");
283 setChange("ALTER TABLE clients ADD COLUMN `your_name` varchar(255) default NULL");
284 setChange("ALTER TABLE tt_teams ADD COLUMN `address` varchar(255) default NULL");
285 setChange("ALTER TABLE invoice_header ADD COLUMN `client_name` varchar(255) default NULL");
286 setChange("ALTER TABLE invoice_header ADD COLUMN `client_addr` varchar(255) default NULL");
287 setChange("ALTER TABLE report_filter_set ADD COLUMN `rfs_cb_cost` tinyint(4) default '0'");
288 setChange("ALTER TABLE activity_log DROP primary key");
289 setChange("ALTER TABLE activity_log ADD COLUMN `id` bigint NOT NULL auto_increment primary key");
290 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`))");
291 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`))");
292 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`))");
293 setChange("ALTER TABLE tt_users DROP u_level");
294 setChange("ALTER TABLE tt_custom_fields ADD COLUMN `status` tinyint(4) default '1'");
295 setChange("ALTER TABLE report_filter_set ADD COLUMN `rfs_cb_cf_1` tinyint(4) default '0'");
296 setChange("ALTER TABLE tt_teams ADD COLUMN `plugins` varchar(255) default NULL");
297 setChange("ALTER TABLE tt_teams MODIFY c_locktime int(4) default '0'");
298 setChange("ALTER TABLE clients DROP your_name");
299 setChange("ALTER TABLE clients DROP clnt_addr_your");
300 setChange("ALTER TABLE `tt_custom_fields` ADD COLUMN `required` tinyint(4) default '0'");
301 setChange("ALTER TABLE tt_teams DROP c_pie_mode");
302 setChange("RENAME TABLE report_filter_set TO tt_fav_reports");
303 setChange("ALTER TABLE tt_fav_reports CHANGE rfs_id id int(11) unsigned NOT NULL auto_increment");
304 setChange("ALTER TABLE tt_fav_reports CHANGE rfs_name name varchar(200) NOT NULL");
305 setChange("ALTER TABLE tt_fav_reports CHANGE rfs_id_u user_id int(11) NOT NULL");
306 setChange("ALTER TABLE tt_fav_reports CHANGE rfs_id_p project_id int(11) default NULL");
307 setChange("ALTER TABLE tt_fav_reports CHANGE rfs_id_a task_id int(11) default NULL");
308 setChange("ALTER TABLE tt_fav_reports CHANGE rfs_users users text default NULL");
309 setChange("ALTER TABLE tt_fav_reports CHANGE rfs_period period tinyint(4) default NULL");
310 setChange("ALTER TABLE tt_fav_reports CHANGE rfs_period_start period_start date default NULL");
311 setChange("ALTER TABLE tt_fav_reports CHANGE rfs_period_finish period_end date default NULL");
312 setChange("ALTER TABLE tt_fav_reports CHANGE rfs_cb_project show_project tinyint(4) NOT NULL default '0'");
313 setChange("ALTER TABLE tt_fav_reports CHANGE rfs_cb_activity show_task tinyint(4) NOT NULL default '0'");
314 setChange("ALTER TABLE tt_fav_reports CHANGE rfs_cb_note show_note tinyint(4) NOT NULL default '0'");
315 setChange("ALTER TABLE tt_fav_reports CHANGE rfs_cb_start show_start tinyint(4) NOT NULL default '0'");
316 setChange("ALTER TABLE tt_fav_reports CHANGE rfs_cb_finish show_end tinyint(4) NOT NULL default '0'");
317 setChange("ALTER TABLE tt_fav_reports CHANGE rfs_cb_duration show_duration tinyint(4) NOT NULL default '0'");
318 setChange("ALTER TABLE tt_fav_reports CHANGE rfs_cb_cost show_cost tinyint(4) NOT NULL default '0'");
319 setChange("ALTER TABLE tt_fav_reports CHANGE rfs_cb_cf_1 show_custom_field_1 tinyint(4) NOT NULL default '0'");
320 setChange("ALTER TABLE tt_fav_reports CHANGE rfs_cb_idle show_empty_days tinyint(4) NOT NULL default '0'");
321 setChange("ALTER TABLE tt_fav_reports CHANGE rfs_cb_totals_only show_totals_only tinyint(4) NOT NULL default '0'");
322 setChange("ALTER TABLE tt_fav_reports CHANGE rfs_groupby group_by varchar(20) default NULL");
323 setChange("ALTER TABLE tt_fav_reports CHANGE rfs_billable billable tinyint(4) default NULL");
324 setChange("ALTER TABLE projects CHANGE p_activities tasks text default NULL");
325 setChange("ALTER TABLE tt_teams CHANGE c_currency currency varchar(7) default NULL");
326 setChange("ALTER TABLE tt_teams CHANGE c_locktime locktime int(4) default '0'");
327 setChange("ALTER TABLE tt_teams CHANGE c_show_pie show_pie smallint(2) DEFAULT '1'");
328 setChange("ALTER TABLE tt_teams CHANGE c_lang lang varchar(10) NOT NULL default 'en'");
329 setChange("ALTER TABLE tt_teams CHANGE c_date_format date_format varchar(20) NOT NULL default '%Y-%m-%d'");
330 setChange("ALTER TABLE tt_teams CHANGE c_time_format time_format varchar(20) NOT NULL default '%H:%M'");
331 setChange("ALTER TABLE tt_teams CHANGE c_week_start week_start smallint(2) NOT NULL DEFAULT '0'");
332 setChange("ALTER TABLE tt_users CHANGE u_id id int(11) NOT NULL auto_increment");
333 setChange("ALTER TABLE tt_users CHANGE u_timestamp timestamp timestamp NOT NULL");
334 setChange("ALTER TABLE tt_users CHANGE u_login login varchar(50) NOT NULL");
335 setChange("drop index u_login_idx on tt_users");
336 setChange("create unique index login_idx on tt_users(login, u_active)");
337 setChange("ALTER TABLE tt_users CHANGE u_password password varchar(50) default NULL");
338 setChange("ALTER TABLE tt_users CHANGE u_name name varchar(100) default NULL");
339 setChange("ALTER TABLE tt_users CHANGE u_email email varchar(100) default NULL");
340 setChange("ALTER TABLE tt_users CHANGE u_rate rate float(6,2) NOT NULL default '0.00'");
341 setChange("update tt_users set u_active = NULL where u_active = 1000");
342 setChange("ALTER TABLE tt_users CHANGE u_active status tinyint(4) default '1'");
343 setChange("ALTER TABLE tt_teams ADD COLUMN status tinyint(4) default '1'");
344 setChange("ALTER TABLE tt_users ADD COLUMN role int(11) default '4'");
345 setChange("update tt_users set role = 1024 where login = 'admin'");
346 setChange("update tt_users set role = 68 where u_comanager = 1");
347 setChange("update tt_users set role = 324 where u_manager_id is null and login != 'admin'");
348 setChange("ALTER TABLE user_bind CHANGE ub_checked status tinyint(4) default '1'");
349 setChange("ALTER TABLE activities ADD COLUMN team_id int(11) NOT NULL");
350 setChange("ALTER TABLE clients ADD COLUMN team_id int(11) NOT NULL");
351 setChange("ALTER TABLE projects ADD COLUMN team_id int(11) NOT NULL");
354 // The update_to_team_id function sets team_id field projects, activities, and clients tables.
355 if ($_POST["update_to_team_id"]) {
356 $mdb2 = getConnection();
359 $sql = "select p_id, p_manager_id from projects where team_id = 0 limit 1000";
360 $res = $mdb2->query($sql);
361 if (is_a($res, 'PEAR_Error')) {
362 die($res->getMessage());
364 // Iterate through projects.
365 $projects_updated = 0;
366 while ($val = $res->fetchRow()) {
367 $project_id = $val['p_id'];
368 $manager_id = $val['p_manager_id'];
370 $sql = "select team_id from tt_users where id = $manager_id";
371 $res2 = $mdb2->query($sql);
372 if (is_a($res2, 'PEAR_Error')) {
373 die($res2->getMessage());
375 $val2 = $res2->fetchRow();
376 $team_id = $val2['team_id'];
379 $sql = "update projects set team_id = $team_id where p_id = $project_id";
380 $affected = $mdb2->exec($sql);
381 if (is_a($affected, 'PEAR_Error')) {
382 die($affected->getMessage());
384 $projects_updated += $affected;
387 print "Updated $projects_updated projects...<br>\n";
390 $sql = "select a_id, a_manager_id from activities where team_id = 0 limit 1000";
391 $res = $mdb2->query($sql);
392 if (is_a($res, 'PEAR_Error')) {
393 die($res->getMessage());
395 // Iterate through tasks.
397 while ($val = $res->fetchRow()) {
398 $task_id = $val['a_id'];
399 $manager_id = $val['a_manager_id'];
401 $sql = "select team_id from tt_users where id = $manager_id";
402 $res2 = $mdb2->query($sql);
403 if (is_a($res2, 'PEAR_Error')) {
404 die($res2->getMessage());
406 $val2 = $res2->fetchRow();
407 $team_id = $val2['team_id'];
410 $sql = "update activities set team_id = $team_id where a_id = $task_id";
411 $affected = $mdb2->exec($sql);
412 if (is_a($affected, 'PEAR_Error')) {
413 die($affected->getMessage());
415 $tasks_updated += $affected;
418 print "Updated $tasks_updated tasks...<br>\n";
421 $sql = "select clnt_id, clnt_id_um from clients where team_id = 0 limit 1000";
422 $res = $mdb2->query($sql);
423 if (is_a($res, 'PEAR_Error')) {
424 die($res->getMessage());
426 // Iterate through clients.
427 $clients_updated = 0;
428 while ($val = $res->fetchRow()) {
429 $client_id = $val['clnt_id'];
430 $manager_id = $val['clnt_id_um'];
432 $sql = "select team_id from tt_users where id = $manager_id";
433 $res2 = $mdb2->query($sql);
434 if (is_a($res2, 'PEAR_Error')) {
435 die($res2->getMessage());
437 $val2 = $res2->fetchRow();
438 $team_id = $val2['team_id'];
441 $sql = "update clients set team_id = $team_id where clnt_id = $client_id";
442 $affected = $mdb2->exec($sql);
443 if (is_a($affected, 'PEAR_Error')) {
444 die($affected->getMessage());
446 $clients_updated += $affected;
449 print "Updated $clients_updated clients...<br>\n";
452 if ($_POST["convert1485to1579"]) {
453 setChange("ALTER TABLE tt_fav_reports MODIFY id int(11) NOT NULL auto_increment");
454 setChange("RENAME TABLE clients TO tt_clients");
455 setChange("ALTER TABLE tt_clients CHANGE clnt_id id int(11) NOT NULL AUTO_INCREMENT");
456 setChange("ALTER TABLE tt_clients CHANGE clnt_status status tinyint(4) default '1'");
457 setChange("ALTER TABLE tt_clients DROP clnt_id_um");
458 setChange("ALTER TABLE tt_clients CHANGE clnt_name name varchar(80) NOT NULL");
459 setChange("drop index clnt_name_idx on tt_clients");
460 setChange("drop index client_name_idx on tt_clients");
461 setChange("create unique index client_name_idx on tt_clients(team_id, name, status)");
462 setChange("ALTER TABLE tt_teams ADD COLUMN `timestamp` timestamp NOT NULL");
463 setChange("ALTER TABLE tt_clients CHANGE clnt_addr_cust address varchar(255) default NULL");
464 setChange("ALTER TABLE tt_clients DROP clnt_discount");
465 setChange("ALTER TABLE tt_clients DROP clnt_comment");
466 setChange("ALTER TABLE tt_clients DROP clnt_fsubtotals");
467 setChange("ALTER TABLE tt_clients CHANGE clnt_tax tax float(6,2) NOT NULL default '0.00'");
468 setChange("ALTER TABLE activity_log ADD COLUMN client_id int(11) default NULL");
469 setChange("ALTER TABLE tt_teams DROP show_pie");
470 setChange("ALTER TABLE tt_fav_reports CHANGE group_by sort_by varchar(20) default 'date'");
471 setChange("RENAME TABLE tmp_refs TO tt_tmp_refs");
472 setChange("ALTER TABLE tt_tmp_refs CHANGE tr_created timestamp timestamp NOT NULL");
473 setChange("ALTER TABLE tt_tmp_refs CHANGE tr_code ref char(32) NOT NULL default ''");
474 setChange("ALTER TABLE tt_tmp_refs CHANGE tr_userid user_id int(11) NOT NULL");
475 setChange("RENAME TABLE projects TO tt_projects");
476 setChange("ALTER TABLE tt_projects CHANGE p_id id int(11) NOT NULL auto_increment");
477 setChange("ALTER TABLE tt_projects DROP p_timestamp");
478 setChange("ALTER TABLE tt_projects CHANGE p_name name varchar(80) NOT NULL");
479 setChange("ALTER TABLE tt_projects CHANGE p_status status tinyint(4) default '1'");
480 setChange("drop index p_name_idx on tt_projects");
481 setChange("create unique index project_idx on tt_projects(team_id, name, status)");
482 setChange("RENAME TABLE activities TO tt_tasks");
483 setChange("ALTER TABLE tt_tasks CHANGE a_id id int(11) NOT NULL auto_increment");
484 setChange("ALTER TABLE tt_tasks DROP a_timestamp");
485 setChange("ALTER TABLE tt_tasks CHANGE a_name name varchar(80) NOT NULL");
486 setChange("ALTER TABLE tt_tasks CHANGE a_status status tinyint(4) default '1'");
487 setChange("drop index a_name_idx on tt_tasks");
488 setChange("create unique index task_idx on tt_tasks(team_id, name, status)");
489 setChange("RENAME TABLE invoice_header TO tt_invoice_headers");
490 setChange("ALTER TABLE tt_invoice_headers CHANGE ih_user_id user_id int(11) NOT NULL");
491 setChange("ALTER TABLE tt_invoice_headers CHANGE ih_number number varchar(20) default NULL");
492 setChange("ALTER TABLE tt_invoice_headers DROP ih_addr_your");
493 setChange("ALTER TABLE tt_invoice_headers DROP ih_addr_cust");
494 setChange("ALTER TABLE tt_invoice_headers CHANGE ih_comment comment varchar(255) default NULL");
495 setChange("ALTER TABLE tt_invoice_headers CHANGE ih_tax tax float(6,2) default '0.00'");
496 setChange("ALTER TABLE tt_invoice_headers CHANGE ih_discount discount float(6,2) default '0.00'");
497 setChange("ALTER TABLE tt_invoice_headers CHANGE ih_fsubtotals subtotals tinyint(4) NOT NULL default '0'");
498 setChange("ALTER TABLE tt_users DROP u_comanager");
499 setChange("ALTER TABLE tt_tasks DROP a_manager_id");
500 setChange("ALTER TABLE tt_projects DROP p_manager_id");
501 setChange("ALTER TABLE tt_users DROP u_manager_id");
502 setChange("ALTER TABLE activity_bind DROP ab_id");
503 setChange("RENAME TABLE activity_bind TO tt_project_task_binds");
504 setChange("ALTER TABLE tt_project_task_binds CHANGE ab_id_p project_id int(11) NOT NULL");
505 setChange("ALTER TABLE tt_project_task_binds CHANGE ab_id_a task_id int(11) NOT NULL");
506 setChange("RENAME TABLE user_bind TO tt_user_project_binds");
507 setChange("ALTER TABLE tt_user_project_binds CHANGE ub_rate rate float(6,2) NOT NULL default '0.00'");
508 setChange("ALTER TABLE tt_user_project_binds CHANGE ub_id_p project_id int(11) NOT NULL");
509 setChange("ALTER TABLE tt_user_project_binds CHANGE ub_id_u user_id int(11) NOT NULL");
510 setChange("ALTER TABLE tt_user_project_binds CHANGE ub_id id int(11) NOT NULL auto_increment");
511 setChange("CREATE TABLE `tt_client_project_binds` (`client_id` int(11) NOT NULL, `project_id` int(11) NOT NULL)");
512 setChange("ALTER TABLE tt_user_project_binds MODIFY rate float(6,2) default '0.00'");
513 setChange("ALTER TABLE tt_clients MODIFY tax float(6,2) default '0.00'");
514 setChange("RENAME TABLE activity_log TO tt_log");
515 setChange("ALTER TABLE tt_log CHANGE al_timestamp timestamp timestamp NOT NULL");
516 setChange("ALTER TABLE tt_log CHANGE al_user_id user_id int(11) NOT NULL");
517 setChange("ALTER TABLE tt_log CHANGE al_date date date NOT NULL");
518 setChange("drop index al_date_idx on tt_log");
519 setChange("create index date_idx on tt_log(date)");
520 setChange("ALTER TABLE tt_log CHANGE al_from start time default NULL");
521 setChange("ALTER TABLE tt_log CHANGE al_duration duration time default NULL");
522 setChange("ALTER TABLE tt_log CHANGE al_project_id project_id int(11) NOT NULL");
523 setChange("ALTER TABLE tt_log MODIFY project_id int(11) default NULL");
524 setChange("ALTER TABLE tt_log CHANGE al_activity_id task_id int(11) default NULL");
525 setChange("ALTER TABLE tt_log CHANGE al_comment comment blob");
526 setChange("ALTER TABLE tt_log CHANGE al_billable billable tinyint(4) default '0'");
527 setChange("drop index al_user_id_idx on tt_log");
528 setChange("drop index al_project_id_idx on tt_log");
529 setChange("drop index al_activity_id_idx on tt_log");
530 setChange("create index user_idx on tt_log(user_id)");
531 setChange("create index project_idx on tt_log(project_id)");
532 setChange("create index task_idx on tt_log(task_id)");
533 setChange("ALTER TABLE tt_custom_field_log CHANGE al_id log_id bigint NOT NULL");
534 setChange("RENAME TABLE sysconfig TO tt_config");
535 setChange("ALTER TABLE tt_config DROP sysc_id");
536 setChange("ALTER TABLE tt_config CHANGE sysc_id_u user_id int(11) NOT NULL");
537 setChange("ALTER TABLE tt_config CHANGE sysc_name param_name varchar(32) NOT NULL");
538 setChange("ALTER TABLE tt_config CHANGE sysc_value param_value varchar(80) default NULL");
539 setChange("create unique index param_idx on tt_config(user_id, param_name)");
540 setChange("ALTER TABLE tt_log ADD COLUMN invoice_id int(11) default NULL");
541 setChange("ALTER TABLE tt_projects ADD COLUMN description varchar(255) default NULL");
542 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`))");
543 setChange("ALTER TABLE tt_invoices drop number");
544 setChange("ALTER TABLE tt_invoices drop client_name");
545 setChange("ALTER TABLE tt_invoices drop client_addr");
546 setChange("ALTER TABLE tt_invoices drop comment");
547 setChange("ALTER TABLE tt_invoices drop tax");
548 setChange("ALTER TABLE tt_invoices ADD COLUMN name varchar(80) NOT NULL");
549 setChange("ALTER TABLE tt_invoices ADD COLUMN client_id int(11) NOT NULL");
550 setChange("ALTER TABLE tt_invoices ADD COLUMN start_date date NOT NULL");
551 setChange("ALTER TABLE tt_invoices ADD COLUMN end_date date NOT NULL");
552 setChange("create unique index name_idx on tt_invoices(team_id, name)");
553 setChange("drop index ub_id_u on tt_user_project_binds");
554 setChange("create unique index bind_idx on tt_user_project_binds(user_id, project_id)");
555 setChange("create index client_idx on tt_log(client_id)");
556 setChange("create index invoice_idx on tt_log(invoice_id)");
559 if ($_POST["convert1579to1600"]) {
560 setChange("ALTER TABLE tt_invoices ADD COLUMN date date NOT NULL");
561 setChange("ALTER TABLE tt_teams ADD COLUMN custom_logo tinyint(4) default '0'");
562 setChange("ALTER TABLE tt_tasks ADD COLUMN description varchar(255) default NULL");
563 setChange("ALTER TABLE tt_projects MODIFY name varchar(80) COLLATE utf8_bin NOT NULL");
564 setChange("ALTER TABLE tt_users MODIFY login varchar(50) COLLATE utf8_bin NOT NULL");
565 setChange("ALTER TABLE tt_tasks MODIFY name varchar(80) COLLATE utf8_bin NOT NULL");
566 setChange("ALTER TABLE tt_invoices MODIFY name varchar(80) COLLATE utf8_bin NOT NULL");
567 setChange("ALTER TABLE tt_clients MODIFY name varchar(80) COLLATE utf8_bin NOT NULL");
568 setChange("ALTER TABLE tt_clients ADD COLUMN projects text default NULL");
569 setChange("ALTER TABLE tt_custom_field_log ADD COLUMN option_id int(11) default NULL");
570 setChange("ALTER TABLE tt_teams ADD COLUMN tracking_mode smallint(2) NOT NULL DEFAULT '2'");
571 setChange("ALTER TABLE tt_teams ADD COLUMN record_type smallint(2) NOT NULL DEFAULT '0'");
572 setChange("ALTER TABLE tt_invoices DROP start_date");
573 setChange("ALTER TABLE tt_invoices DROP end_date");
576 if ($_POST["convert1600to1900"]) {
577 setChange("DROP TABLE IF EXISTS tt_invoice_headers");
578 setChange("ALTER TABLE tt_fav_reports ADD COLUMN `client_id` int(11) default NULL");
579 setChange("ALTER TABLE tt_fav_reports ADD COLUMN `cf_1_option_id` int(11) default NULL");
580 setChange("ALTER TABLE tt_fav_reports ADD COLUMN `show_client` tinyint(4) NOT NULL default '0'");
581 setChange("ALTER TABLE tt_fav_reports ADD COLUMN `show_invoice` tinyint(4) NOT NULL default '0'");
582 setChange("ALTER TABLE tt_fav_reports ADD COLUMN `group_by` varchar(20) default NULL");
583 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`))");
584 setChange("create index date_idx on tt_expense_items(date)");
585 setChange("create index user_idx on tt_expense_items(user_id)");
586 setChange("create index client_idx on tt_expense_items(client_id)");
587 setChange("create index project_idx on tt_expense_items(project_id)");
588 setChange("create index invoice_idx on tt_expense_items(invoice_id)");
589 setChange("ALTER TABLE tt_fav_reports DROP sort_by");
590 setChange("ALTER TABLE tt_fav_reports DROP show_empty_days");
591 setChange("ALTER TABLE tt_invoices DROP discount");
592 setChange("ALTER TABLE tt_users ADD COLUMN `client_id` int(11) default NULL");
593 setChange("ALTER TABLE tt_teams ADD COLUMN `decimal_mark` char(1) NOT NULL default '.'");
594 setChange("ALTER TABLE tt_fav_reports ADD COLUMN `invoice` tinyint(4) default NULL");
595 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`))");
596 setChange("ALTER TABLE tt_cron ADD COLUMN `team_id` int(11) NOT NULL");
597 setChange("create index client_idx on tt_client_project_binds(client_id)");
598 setChange("create index project_idx on tt_client_project_binds(project_id)");
599 setChange("ALTER TABLE tt_log ADD COLUMN status tinyint(4) default '1'");
600 setChange("ALTER TABLE tt_custom_field_log ADD COLUMN status tinyint(4) default '1'");
601 setChange("ALTER TABLE tt_expense_items ADD COLUMN status tinyint(4) default '1'");
602 setChange("ALTER TABLE tt_invoices ADD COLUMN status tinyint(4) default '1'");
603 setChange("DROP INDEX name_idx on tt_invoices");
604 setChange("create unique index name_idx on tt_invoices(team_id, name, status)");
605 setChange("ALTER TABLE tt_teams ADD COLUMN lock_spec varchar(255) default NULL");
606 setChange("ALTER TABLE tt_teams DROP locktime");
609 // The update_clients function updates projects field in tt_clients table.
610 if ($_POST["update_clients"]) {
611 $mdb2 = getConnection();
612 $sql = "select id from tt_clients where status = 1 or status = 0";
613 $res = $mdb2->query($sql);
614 if (is_a($res, 'PEAR_Error')) {
615 die($res->getMessage());
618 $clients_updated = 0;
619 // Iterate through clients.
620 while ($val = $res->fetchRow()) {
621 $client_id = $val['id'];
623 // Get projects binds for client.
624 $sql = "select cpb.project_id from tt_client_project_binds cpb
625 left join tt_projects p on (p.id = cpb.project_id)
626 where cpb.client_id = $client_id order by p.name";
628 $result = $mdb2->query($sql);
629 if (is_a($result, 'PEAR_Error'))
630 die($result->getMessage());
632 $project_arr = array();
633 while ($value = $result->fetchRow()) {
634 $project_arr[] = $value['project_id'];
636 $comma_separated = implode(',', $project_arr); // This is a comma-separated list of associated project ids.
638 // Update the projects field.
639 $sql = "update tt_clients set projects = ".$mdb2->quote($comma_separated)." where id = $client_id";
640 $affected = $mdb2->exec($sql);
641 if (is_a($affected, 'PEAR_Error'))
642 die($affected->getMessage());
643 $clients_updated += $affected;
645 print "Updated $clients_updated clients...<br>\n";
648 // The update_custom_fields function updates option_id field field in tt_custom_field_log table.
649 if ($_POST['update_custom_fields']) {
650 $mdb2 = getConnection();
651 $sql = "update tt_custom_field_log set option_id = value where field_id in (select id from tt_custom_fields where type = 2)";
652 $affected = $mdb2->exec($sql);
653 if (is_a($affected, 'PEAR_Error'))
654 die($affected->getMessage());
656 print "Updated $affected custom fields...<br>\n";
659 // The update_tracking_mode function sets the tracking_mode field in tt_teams table to 2 (== MODE_PROJECTS_AND_TASKS).
660 if ($_POST['update_tracking_mode']) {
661 $mdb2 = getConnection();
662 $sql = "update tt_teams set tracking_mode = 2 where tracking_mode = 0";
663 $affected = $mdb2->exec($sql);
664 if (is_a($affected, 'PEAR_Error'))
665 die($affected->getMessage());
667 print "Updated $affected teams...<br>\n";
670 if ($_POST["cleanup"]) {
672 $mdb2 = getConnection();
673 $inactive_teams = ttTeamHelper::getInactiveTeams();
675 $count = count($inactive_teams);
676 print "$count inactive teams found...<br>\n";
677 for ($i = 0; $i < $count; $i++) {
678 print " deleting team ".$inactive_teams[$i]."<br>\n";
679 $res = ttTeamHelper::delete($inactive_teams[$i]);
682 setChange("OPTIMIZE TABLE tt_client_project_binds");
683 setChange("OPTIMIZE TABLE tt_clients");
684 setChange("OPTIMIZE TABLE tt_config");
685 setChange("OPTIMIZE TABLE tt_custom_field_log");
686 setChange("OPTIMIZE TABLE tt_custom_field_options");
687 setChange("OPTIMIZE TABLE tt_custom_fields");
688 setChange("OPTIMIZE TABLE tt_expense_items");
689 setChange("OPTIMIZE TABLE tt_fav_reports");
690 setChange("OPTIMIZE TABLE tt_invoices");
691 setChange("OPTIMIZE TABLE tt_log");
692 setChange("OPTIMIZE TABLE tt_project_task_binds");
693 setChange("OPTIMIZE TABLE tt_projects");
694 setChange("OPTIMIZE TABLE tt_tasks");
695 setChange("OPTIMIZE TABLE tt_teams");
696 setChange("OPTIMIZE TABLE tt_tmp_refs");
697 setChange("OPTIMIZE TABLE tt_user_project_binds");
698 setChange("OPTIMIZE TABLE tt_users");
709 <table width="80%" border="1" cellpadding="10" cellspacing="0">
711 <td width="80%"><b>Create database structure (v1.9)</b>
712 <br>(applies only to new installations, do not execute when updating)</br></td><td><input type="submit" name="crstructure" value="Create"></td>
718 <table width="80%" border="1" cellpadding="10" cellspacing="0">
720 <td>Update database structure (v0.5 to v0.7)</td><td><input type="submit" name="convert5to7" value="Update"></td>
723 <td>Update database structure (v0.7 to v1.3.3)</td>
724 <td><input type="submit" name="convert7to133" value="Update"><br><input type="submit" name="update_projects" value="Update projects"></td>
727 <td>Update database structure (v1.3.3 to v1.3.40)</td>
728 <td><input type="submit" name="convert133to1340" value="Update"><br><input type="submit" name="update_companies" value="Update companies"></td>
731 <td>Update database structure (v1.3.40 to v1.4.85)</td>
732 <td><input type="submit" name="convert1340to1485" value="Update"><br><input type="submit" name="update_to_team_id" value="Update team_id"></td>
735 <td>Update database structure (v1.4.85 to v1.5.79)</td>
736 <td><input type="submit" name="convert1485to1579" value="Update"></td>
739 <td>Update database structure (v1.5.79 to v1.6)</td>
740 <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>
743 <td>Update database structure (v1.6 to v1.9)</td>
744 <td><input type="submit" name="convert1600to1900" value="Update"><br></td>
748 <h2>DB Maintenance</h2>
749 <table width="80%" border="1" cellpadding="10" cellspacing="0">
751 <td width="80%">Clean up DB from inactive teams</td><td><input type="submit" name="cleanup" value="Clean up"></td>