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 // 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 echo('<font color="red">Error: WEB-INF/config.php file does not exist.</font><br>');
62 // Check whether DSN is defined.
64 // echo('DSN is defined as '.DSN.'<br>');
65 echo('DSN is defined.<br>');
67 echo('<font color="red">Error: DSN value is not defined. Check your config.php file.</font><br>');
70 // Depending on DSN, require either mysqli or mysql extensions.
71 if (strrpos(DSN, 'mysqli://', -strlen(DSN)) !== FALSE) {
72 if (extension_loaded('mysqli')) {
73 echo('mysqli PHP extension is loaded.<br>');
75 echo('<font color="red">Error: mysqli PHP extension is required but is not loaded.</font><br>');
78 if (strrpos(DSN, 'mysql://', -strlen(DSN)) !== FALSE) {
79 if (extension_loaded('mysql')) {
80 echo('mysql PHP extension is loaded.<br>');
82 echo('<font color="red">Error: mysql PHP extension is required but is not loaded.</font><br>');
86 // Check mbstring extension.
87 if (extension_loaded('mbstring')) {
88 echo('mbstring PHP extension is loaded.<br>');
90 echo('<font color="red">Error: mbstring PHP extension is not loaded.</font><br>');
93 // Check gd extension.
94 if (extension_loaded('gd')) {
95 echo('gd PHP extension is loaded.<br>');
97 echo('<font color="red">Error: gd PHP extension is not loaded. It is required for charts plugin.</font><br>');
100 // Check ldap extension.
101 if (AUTH_MODULE == 'ldap') {
102 if (extension_loaded('ldap_')) {
103 echo('ldap PHP extension is loaded.<br>');
105 echo('<font color="red">Error: ldap PHP extension is not loaded. It is required for LDAP authentication.</font><br>');
109 // Check database access.
110 require_once('MDB2.php');
111 $conn = MDB2::connect(DSN);
112 if (!is_a($conn, 'MDB2_Error')) {
113 echo('Connection to database successful.<br>');
115 die('<font color="red">Error: connection to database failed. '.$conn->getMessage().'</font><br>');
118 $conn->setOption('debug', true);
119 $conn->setFetchMode(MDB2_FETCHMODE_ASSOC);
121 $sql = "show tables";
122 $res = $conn->query($sql);
123 if (is_a($res, 'MDB2_Error')) {
124 die('<font color="red">Error: show tables returned an error. '.$res->getMessage().'</font><br>');
127 while ($val = $res->fetchRow()) {
131 echo("There are $tblCnt tables in database.<br>");
133 echo('<font color="red">There are no tables in database. Execute step 1 - Create database structure.</font><br>');
140 print "Processing...<br>\n";
142 if ($_POST["crstructure"]) {
143 $sqlQuery = join("\n", file("mysql.sql"));
144 $sqlQuery = str_replace("TYPE=MyISAM","",$sqlQuery);
145 $queries = explode(";",$sqlQuery);
146 if (is_array($queries)) {
147 foreach ($queries as $query) {
148 $query = trim($query);
149 if (strlen($query)>0) {
156 if ($_POST["convert5to7"]) {
157 setChange("alter table `activity_log` CHANGE al_comment al_comment BLOB");
158 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`))");
159 setChange("alter table `companies` add c_locktime int(4) default -1");
160 setChange("alter table `activity_log` add al_billable tinyint(4) default 0");
161 setChange("alter table `sysconfig` drop INDEX `sysc_name`");
162 setChange("alter table `sysconfig` add sysc_id_u int(4)");
163 setChange("alter table `report_filter_set` add rfs_billable VARCHAR(10)");
164 setChange("ALTER TABLE clients MODIFY clnt_id int(11) NOT NULL AUTO_INCREMENT");
165 setChange("ALTER TABLE `users` ADD `u_show_pie` smallint(2) DEFAULT '1'");
166 setChange("alter table `users` ADD `u_pie_mode` smallint(2) DEFAULT '1'");
167 setChange("alter table users drop `u_aprojects`");
170 if ($_POST["convert7to133"]) {
171 setChange("ALTER TABLE users ADD COLUMN u_lang VARCHAR(20) DEFAULT NULL");
172 setChange("ALTER TABLE users ADD COLUMN u_email VARCHAR(100) DEFAULT NULL");
173 setChange("ALTER TABLE `activity_log` drop `al_proof`");
174 setChange("ALTER TABLE `activity_log` drop `al_charge`");
175 setChange("ALTER TABLE `activities` drop `a_project_id`");
176 setChange("DROP TABLE `activity_status_list`");
177 setChange("DROP TABLE `project_status_list`");
178 setChange("DROP TABLE `user_status_list`");
179 setChange("DROP TABLE `companies_c_id_seq`");
180 setChange("ALTER TABLE projects ADD COLUMN p_activities TEXT");
183 // The update_projects function updates p_activities field in the projects table so that we could
184 // improve performance of the application by using this field instead of activity_bind table.
185 if ($_POST["update_projects"]) {
186 $mdb2 = getConnection();
187 // $sql = "select p_id from projects where p_status = 1 and p_activities is NULL";
188 $sql = "select p_id from projects where p_status = 1";
189 $res = $mdb2->query($sql);
190 if (is_a($res, 'PEAR_Error')) {
191 die($res->getMessage());
193 // Iterate through projects.
194 while ($val = $res->fetchRow()) {
195 $project_id = $val['p_id'];
197 // Get activity binds for project (old way).
198 // $sql = "select ab_id_a from activity_bind where ab_id_p = $project_id";
199 $sql = "select ab_id_a, a_id, a_name from activity_bind
200 inner join activities on (ab_id_a = a_id)
201 where ab_id_p = $project_id order by a_name";
203 $result = $mdb2->query($sql);
204 if (is_a($result, 'PEAR_Error')) {
205 die($result->getMessage());
207 $activity_arr = array();
208 while ($value = $result->fetchRow()) {
209 $activity_arr[] = $value['ab_id_a'];
211 $a_comma_separated = implode(",", $activity_arr); // This is a comma-separated list of associated activity ids.
213 // Re-bind the project to activities (new way).
214 $sql = "update projects set p_activities = ".$mdb2->quote($a_comma_separated)." where p_id = $project_id";
215 $affected = $mdb2->exec($sql);
216 if (is_a($affected, 'PEAR_Error')) {
217 die($affected->getMessage());
222 if ($_POST["convert133to1340"]) {
223 setChange("ALTER TABLE companies ADD COLUMN c_show_pie smallint(2) DEFAULT 1");
224 setChange("ALTER TABLE companies ADD COLUMN c_pie_mode smallint(2) DEFAULT 1");
225 setChange("ALTER TABLE companies ADD COLUMN c_lang varchar(20) default NULL");
228 // The update_companies function sets up c_show_pie, c_pie_mode, and c_lang
229 // fields in the companies table from the corresponding manager fields.
230 if ($_POST["update_companies"]) {
231 $mdb2 = getConnection();
232 // Get all active managers.
233 $sql = "select u_company_id, u_show_pie, u_pie_mode, u_lang from users
234 where u_manager_id is NULL and u_login <> 'admin' and u_company_id is not NULL and u_active = 1";
235 $res = $mdb2->query($sql);
236 if (is_a($res, 'PEAR_Error')) {
237 die($res->getMessage());
239 // Iterate through managers and set fields in the companies table.
240 while ($val = $res->fetchRow()) {
241 $company_id = $val['u_company_id'];
242 $show_pie = $val['u_show_pie'];
243 $pie_mode = $val['u_pie_mode'];
244 $lang = $val['u_lang'];
246 $sql = "update companies set
247 c_show_pie = $show_pie, c_pie_mode = $pie_mode, c_lang = ".$mdb2->quote($lang).
248 " where c_id = $company_id";
250 $result = $mdb2->query($sql);
251 if (is_a($result, 'PEAR_Error')) {
252 die($result->getMessage());
257 if ($_POST["convert1340to1485"]) {
258 setChange("ALTER TABLE users DROP u_show_pie");
259 setChange("ALTER TABLE users DROP u_pie_mode");
260 setChange("ALTER TABLE users DROP u_lang");
261 setChange("ALTER TABLE `users` modify u_login varchar(100) NOT NULL");
262 setChange("ALTER TABLE `users` modify u_active smallint(6) default '1'");
263 setChange("drop index u_login_idx on users");
264 setChange("create unique index u_login_idx on users(u_login, u_active)");
265 setChange("ALTER TABLE companies MODIFY `c_lang` varchar(20) NOT NULL default 'en'");
266 setChange("ALTER TABLE companies ADD COLUMN `c_date_format` varchar(20) NOT NULL default '%Y-%m-%d'");
267 setChange("ALTER TABLE companies ADD COLUMN `c_time_format` varchar(20) NOT NULL default '%H:%M'");
268 setChange("ALTER TABLE companies ADD COLUMN `c_week_start` smallint(2) NOT NULL DEFAULT '0'");
269 setChange("ALTER TABLE clients MODIFY `clnt_status` smallint(6) default '1'");
270 setChange("create unique index clnt_name_idx on clients(clnt_id_um, clnt_name, clnt_status)");
271 setChange("ALTER TABLE projects modify p_status smallint(6) default '1'");
272 setChange("update projects set p_status = NULL where p_status = 1000");
273 setChange("drop index p_manager_idx on projects");
274 setChange("create unique index p_name_idx on projects(p_manager_id, p_name, p_status)");
275 setChange("ALTER TABLE activities modify a_status smallint(6) default '1'");
276 setChange("update activities set a_status = NULL where a_status = 1000");
277 setChange("drop index a_manager_idx on activities");
278 setChange("create unique index a_name_idx on activities(a_manager_id, a_name, a_status)");
279 setChange("RENAME TABLE companies TO teams");
280 setChange("RENAME TABLE teams TO att_teams");
281 setChange("ALTER TABLE att_teams CHANGE c_id id int(11) NOT NULL auto_increment");
282 setChange("RENAME TABLE users TO att_users");
283 setChange("update att_users set u_company_id = 0 where u_company_id is NULL");
284 setChange("ALTER TABLE att_users CHANGE u_company_id team_id int(11) NOT NULL");
285 setChange("RENAME TABLE att_teams TO tt_teams");
286 setChange("RENAME TABLE att_users TO tt_users");
287 setChange("ALTER TABLE tt_teams CHANGE c_name name varchar(80) NOT NULL");
288 setChange("ALTER TABLE `tt_teams` drop `c_www`");
289 setChange("ALTER TABLE `tt_teams` MODIFY `name` varchar(80) default NULL");
290 setChange("ALTER TABLE clients ADD COLUMN `your_name` varchar(255) default NULL");
291 setChange("ALTER TABLE tt_teams ADD COLUMN `address` varchar(255) default NULL");
292 setChange("ALTER TABLE invoice_header ADD COLUMN `client_name` varchar(255) default NULL");
293 setChange("ALTER TABLE invoice_header ADD COLUMN `client_addr` varchar(255) default NULL");
294 setChange("ALTER TABLE report_filter_set ADD COLUMN `rfs_cb_cost` tinyint(4) default '0'");
295 setChange("ALTER TABLE activity_log DROP primary key");
296 setChange("ALTER TABLE activity_log ADD COLUMN `id` bigint NOT NULL auto_increment primary key");
297 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`))");
298 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`))");
299 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`))");
300 setChange("ALTER TABLE tt_users DROP u_level");
301 setChange("ALTER TABLE tt_custom_fields ADD COLUMN `status` tinyint(4) default '1'");
302 setChange("ALTER TABLE report_filter_set ADD COLUMN `rfs_cb_cf_1` tinyint(4) default '0'");
303 setChange("ALTER TABLE tt_teams ADD COLUMN `plugins` varchar(255) default NULL");
304 setChange("ALTER TABLE tt_teams MODIFY c_locktime int(4) default '0'");
305 setChange("ALTER TABLE clients DROP your_name");
306 setChange("ALTER TABLE clients DROP clnt_addr_your");
307 setChange("ALTER TABLE `tt_custom_fields` ADD COLUMN `required` tinyint(4) default '0'");
308 setChange("ALTER TABLE tt_teams DROP c_pie_mode");
309 setChange("RENAME TABLE report_filter_set TO tt_fav_reports");
310 setChange("ALTER TABLE tt_fav_reports CHANGE rfs_id id int(11) unsigned NOT NULL auto_increment");
311 setChange("ALTER TABLE tt_fav_reports CHANGE rfs_name name varchar(200) NOT NULL");
312 setChange("ALTER TABLE tt_fav_reports CHANGE rfs_id_u user_id int(11) NOT NULL");
313 setChange("ALTER TABLE tt_fav_reports CHANGE rfs_id_p project_id int(11) default NULL");
314 setChange("ALTER TABLE tt_fav_reports CHANGE rfs_id_a task_id int(11) default NULL");
315 setChange("ALTER TABLE tt_fav_reports CHANGE rfs_users users text default NULL");
316 setChange("ALTER TABLE tt_fav_reports CHANGE rfs_period period tinyint(4) default NULL");
317 setChange("ALTER TABLE tt_fav_reports CHANGE rfs_period_start period_start date default NULL");
318 setChange("ALTER TABLE tt_fav_reports CHANGE rfs_period_finish period_end date default NULL");
319 setChange("ALTER TABLE tt_fav_reports CHANGE rfs_cb_project show_project tinyint(4) NOT NULL default '0'");
320 setChange("ALTER TABLE tt_fav_reports CHANGE rfs_cb_activity show_task tinyint(4) NOT NULL default '0'");
321 setChange("ALTER TABLE tt_fav_reports CHANGE rfs_cb_note show_note tinyint(4) NOT NULL default '0'");
322 setChange("ALTER TABLE tt_fav_reports CHANGE rfs_cb_start show_start tinyint(4) NOT NULL default '0'");
323 setChange("ALTER TABLE tt_fav_reports CHANGE rfs_cb_finish show_end tinyint(4) NOT NULL default '0'");
324 setChange("ALTER TABLE tt_fav_reports CHANGE rfs_cb_duration show_duration tinyint(4) NOT NULL default '0'");
325 setChange("ALTER TABLE tt_fav_reports CHANGE rfs_cb_cost show_cost tinyint(4) NOT NULL default '0'");
326 setChange("ALTER TABLE tt_fav_reports CHANGE rfs_cb_cf_1 show_custom_field_1 tinyint(4) NOT NULL default '0'");
327 setChange("ALTER TABLE tt_fav_reports CHANGE rfs_cb_idle show_empty_days tinyint(4) NOT NULL default '0'");
328 setChange("ALTER TABLE tt_fav_reports CHANGE rfs_cb_totals_only show_totals_only tinyint(4) NOT NULL default '0'");
329 setChange("ALTER TABLE tt_fav_reports CHANGE rfs_groupby group_by varchar(20) default NULL");
330 setChange("ALTER TABLE tt_fav_reports CHANGE rfs_billable billable tinyint(4) default NULL");
331 setChange("ALTER TABLE projects CHANGE p_activities tasks text default NULL");
332 setChange("ALTER TABLE tt_teams CHANGE c_currency currency varchar(7) default NULL");
333 setChange("ALTER TABLE tt_teams CHANGE c_locktime locktime int(4) default '0'");
334 setChange("ALTER TABLE tt_teams CHANGE c_show_pie show_pie smallint(2) DEFAULT '1'");
335 setChange("ALTER TABLE tt_teams CHANGE c_lang lang varchar(10) NOT NULL default 'en'");
336 setChange("ALTER TABLE tt_teams CHANGE c_date_format date_format varchar(20) NOT NULL default '%Y-%m-%d'");
337 setChange("ALTER TABLE tt_teams CHANGE c_time_format time_format varchar(20) NOT NULL default '%H:%M'");
338 setChange("ALTER TABLE tt_teams CHANGE c_week_start week_start smallint(2) NOT NULL DEFAULT '0'");
339 setChange("ALTER TABLE tt_users CHANGE u_id id int(11) NOT NULL auto_increment");
340 setChange("ALTER TABLE tt_users CHANGE u_timestamp timestamp timestamp NOT NULL");
341 setChange("ALTER TABLE tt_users CHANGE u_login login varchar(50) NOT NULL");
342 setChange("drop index u_login_idx on tt_users");
343 setChange("create unique index login_idx on tt_users(login, u_active)");
344 setChange("ALTER TABLE tt_users CHANGE u_password password varchar(50) default NULL");
345 setChange("ALTER TABLE tt_users CHANGE u_name name varchar(100) default NULL");
346 setChange("ALTER TABLE tt_users CHANGE u_email email varchar(100) default NULL");
347 setChange("ALTER TABLE tt_users CHANGE u_rate rate float(6,2) NOT NULL default '0.00'");
348 setChange("update tt_users set u_active = NULL where u_active = 1000");
349 setChange("ALTER TABLE tt_users CHANGE u_active status tinyint(4) default '1'");
350 setChange("ALTER TABLE tt_teams ADD COLUMN status tinyint(4) default '1'");
351 setChange("ALTER TABLE tt_users ADD COLUMN role int(11) default '4'");
352 setChange("update tt_users set role = 1024 where login = 'admin'");
353 setChange("update tt_users set role = 68 where u_comanager = 1");
354 setChange("update tt_users set role = 324 where u_manager_id is null and login != 'admin'");
355 setChange("ALTER TABLE user_bind CHANGE ub_checked status tinyint(4) default '1'");
356 setChange("ALTER TABLE activities ADD COLUMN team_id int(11) NOT NULL");
357 setChange("ALTER TABLE clients ADD COLUMN team_id int(11) NOT NULL");
358 setChange("ALTER TABLE projects ADD COLUMN team_id int(11) NOT NULL");
361 // The update_to_team_id function sets team_id field projects, activities, and clients tables.
362 if ($_POST["update_to_team_id"]) {
363 $mdb2 = getConnection();
366 $sql = "select p_id, p_manager_id from projects where team_id = 0 limit 1000";
367 $res = $mdb2->query($sql);
368 if (is_a($res, 'PEAR_Error')) {
369 die($res->getMessage());
371 // Iterate through projects.
372 $projects_updated = 0;
373 while ($val = $res->fetchRow()) {
374 $project_id = $val['p_id'];
375 $manager_id = $val['p_manager_id'];
377 $sql = "select team_id from tt_users where id = $manager_id";
378 $res2 = $mdb2->query($sql);
379 if (is_a($res2, 'PEAR_Error')) {
380 die($res2->getMessage());
382 $val2 = $res2->fetchRow();
383 $team_id = $val2['team_id'];
386 $sql = "update projects set team_id = $team_id where p_id = $project_id";
387 $affected = $mdb2->exec($sql);
388 if (is_a($affected, 'PEAR_Error')) {
389 die($affected->getMessage());
391 $projects_updated += $affected;
394 print "Updated $projects_updated projects...<br>\n";
397 $sql = "select a_id, a_manager_id from activities where team_id = 0 limit 1000";
398 $res = $mdb2->query($sql);
399 if (is_a($res, 'PEAR_Error')) {
400 die($res->getMessage());
402 // Iterate through tasks.
404 while ($val = $res->fetchRow()) {
405 $task_id = $val['a_id'];
406 $manager_id = $val['a_manager_id'];
408 $sql = "select team_id from tt_users where id = $manager_id";
409 $res2 = $mdb2->query($sql);
410 if (is_a($res2, 'PEAR_Error')) {
411 die($res2->getMessage());
413 $val2 = $res2->fetchRow();
414 $team_id = $val2['team_id'];
417 $sql = "update activities set team_id = $team_id where a_id = $task_id";
418 $affected = $mdb2->exec($sql);
419 if (is_a($affected, 'PEAR_Error')) {
420 die($affected->getMessage());
422 $tasks_updated += $affected;
425 print "Updated $tasks_updated tasks...<br>\n";
428 $sql = "select clnt_id, clnt_id_um from clients where team_id = 0 limit 1000";
429 $res = $mdb2->query($sql);
430 if (is_a($res, 'PEAR_Error')) {
431 die($res->getMessage());
433 // Iterate through clients.
434 $clients_updated = 0;
435 while ($val = $res->fetchRow()) {
436 $client_id = $val['clnt_id'];
437 $manager_id = $val['clnt_id_um'];
439 $sql = "select team_id from tt_users where id = $manager_id";
440 $res2 = $mdb2->query($sql);
441 if (is_a($res2, 'PEAR_Error')) {
442 die($res2->getMessage());
444 $val2 = $res2->fetchRow();
445 $team_id = $val2['team_id'];
448 $sql = "update clients set team_id = $team_id where clnt_id = $client_id";
449 $affected = $mdb2->exec($sql);
450 if (is_a($affected, 'PEAR_Error')) {
451 die($affected->getMessage());
453 $clients_updated += $affected;
456 print "Updated $clients_updated clients...<br>\n";
459 if ($_POST["convert1485to1579"]) {
460 setChange("ALTER TABLE tt_fav_reports MODIFY id int(11) NOT NULL auto_increment");
461 setChange("RENAME TABLE clients TO tt_clients");
462 setChange("ALTER TABLE tt_clients CHANGE clnt_id id int(11) NOT NULL AUTO_INCREMENT");
463 setChange("ALTER TABLE tt_clients CHANGE clnt_status status tinyint(4) default '1'");
464 setChange("ALTER TABLE tt_clients DROP clnt_id_um");
465 setChange("ALTER TABLE tt_clients CHANGE clnt_name name varchar(80) NOT NULL");
466 setChange("drop index clnt_name_idx on tt_clients");
467 setChange("drop index client_name_idx on tt_clients");
468 setChange("create unique index client_name_idx on tt_clients(team_id, name, status)");
469 setChange("ALTER TABLE tt_teams ADD COLUMN `timestamp` timestamp NOT NULL");
470 setChange("ALTER TABLE tt_clients CHANGE clnt_addr_cust address varchar(255) default NULL");
471 setChange("ALTER TABLE tt_clients DROP clnt_discount");
472 setChange("ALTER TABLE tt_clients DROP clnt_comment");
473 setChange("ALTER TABLE tt_clients DROP clnt_fsubtotals");
474 setChange("ALTER TABLE tt_clients CHANGE clnt_tax tax float(6,2) NOT NULL default '0.00'");
475 setChange("ALTER TABLE activity_log ADD COLUMN client_id int(11) default NULL");
476 setChange("ALTER TABLE tt_teams DROP show_pie");
477 setChange("ALTER TABLE tt_fav_reports CHANGE group_by sort_by varchar(20) default 'date'");
478 setChange("RENAME TABLE tmp_refs TO tt_tmp_refs");
479 setChange("ALTER TABLE tt_tmp_refs CHANGE tr_created timestamp timestamp NOT NULL");
480 setChange("ALTER TABLE tt_tmp_refs CHANGE tr_code ref char(32) NOT NULL default ''");
481 setChange("ALTER TABLE tt_tmp_refs CHANGE tr_userid user_id int(11) NOT NULL");
482 setChange("RENAME TABLE projects TO tt_projects");
483 setChange("ALTER TABLE tt_projects CHANGE p_id id int(11) NOT NULL auto_increment");
484 setChange("ALTER TABLE tt_projects DROP p_timestamp");
485 setChange("ALTER TABLE tt_projects CHANGE p_name name varchar(80) NOT NULL");
486 setChange("ALTER TABLE tt_projects CHANGE p_status status tinyint(4) default '1'");
487 setChange("drop index p_name_idx on tt_projects");
488 setChange("create unique index project_idx on tt_projects(team_id, name, status)");
489 setChange("RENAME TABLE activities TO tt_tasks");
490 setChange("ALTER TABLE tt_tasks CHANGE a_id id int(11) NOT NULL auto_increment");
491 setChange("ALTER TABLE tt_tasks DROP a_timestamp");
492 setChange("ALTER TABLE tt_tasks CHANGE a_name name varchar(80) NOT NULL");
493 setChange("ALTER TABLE tt_tasks CHANGE a_status status tinyint(4) default '1'");
494 setChange("drop index a_name_idx on tt_tasks");
495 setChange("create unique index task_idx on tt_tasks(team_id, name, status)");
496 setChange("RENAME TABLE invoice_header TO tt_invoice_headers");
497 setChange("ALTER TABLE tt_invoice_headers CHANGE ih_user_id user_id int(11) NOT NULL");
498 setChange("ALTER TABLE tt_invoice_headers CHANGE ih_number number varchar(20) default NULL");
499 setChange("ALTER TABLE tt_invoice_headers DROP ih_addr_your");
500 setChange("ALTER TABLE tt_invoice_headers DROP ih_addr_cust");
501 setChange("ALTER TABLE tt_invoice_headers CHANGE ih_comment comment varchar(255) default NULL");
502 setChange("ALTER TABLE tt_invoice_headers CHANGE ih_tax tax float(6,2) default '0.00'");
503 setChange("ALTER TABLE tt_invoice_headers CHANGE ih_discount discount float(6,2) default '0.00'");
504 setChange("ALTER TABLE tt_invoice_headers CHANGE ih_fsubtotals subtotals tinyint(4) NOT NULL default '0'");
505 setChange("ALTER TABLE tt_users DROP u_comanager");
506 setChange("ALTER TABLE tt_tasks DROP a_manager_id");
507 setChange("ALTER TABLE tt_projects DROP p_manager_id");
508 setChange("ALTER TABLE tt_users DROP u_manager_id");
509 setChange("ALTER TABLE activity_bind DROP ab_id");
510 setChange("RENAME TABLE activity_bind TO tt_project_task_binds");
511 setChange("ALTER TABLE tt_project_task_binds CHANGE ab_id_p project_id int(11) NOT NULL");
512 setChange("ALTER TABLE tt_project_task_binds CHANGE ab_id_a task_id int(11) NOT NULL");
513 setChange("RENAME TABLE user_bind TO tt_user_project_binds");
514 setChange("ALTER TABLE tt_user_project_binds CHANGE ub_rate rate float(6,2) NOT NULL default '0.00'");
515 setChange("ALTER TABLE tt_user_project_binds CHANGE ub_id_p project_id int(11) NOT NULL");
516 setChange("ALTER TABLE tt_user_project_binds CHANGE ub_id_u user_id int(11) NOT NULL");
517 setChange("ALTER TABLE tt_user_project_binds CHANGE ub_id id int(11) NOT NULL auto_increment");
518 setChange("CREATE TABLE `tt_client_project_binds` (`client_id` int(11) NOT NULL, `project_id` int(11) NOT NULL)");
519 setChange("ALTER TABLE tt_user_project_binds MODIFY rate float(6,2) default '0.00'");
520 setChange("ALTER TABLE tt_clients MODIFY tax float(6,2) default '0.00'");
521 setChange("RENAME TABLE activity_log TO tt_log");
522 setChange("ALTER TABLE tt_log CHANGE al_timestamp timestamp timestamp NOT NULL");
523 setChange("ALTER TABLE tt_log CHANGE al_user_id user_id int(11) NOT NULL");
524 setChange("ALTER TABLE tt_log CHANGE al_date date date NOT NULL");
525 setChange("drop index al_date_idx on tt_log");
526 setChange("create index date_idx on tt_log(date)");
527 setChange("ALTER TABLE tt_log CHANGE al_from start time default NULL");
528 setChange("ALTER TABLE tt_log CHANGE al_duration duration time default NULL");
529 setChange("ALTER TABLE tt_log CHANGE al_project_id project_id int(11) NOT NULL");
530 setChange("ALTER TABLE tt_log MODIFY project_id int(11) default NULL");
531 setChange("ALTER TABLE tt_log CHANGE al_activity_id task_id int(11) default NULL");
532 setChange("ALTER TABLE tt_log CHANGE al_comment comment blob");
533 setChange("ALTER TABLE tt_log CHANGE al_billable billable tinyint(4) default '0'");
534 setChange("drop index al_user_id_idx on tt_log");
535 setChange("drop index al_project_id_idx on tt_log");
536 setChange("drop index al_activity_id_idx on tt_log");
537 setChange("create index user_idx on tt_log(user_id)");
538 setChange("create index project_idx on tt_log(project_id)");
539 setChange("create index task_idx on tt_log(task_id)");
540 setChange("ALTER TABLE tt_custom_field_log CHANGE al_id log_id bigint NOT NULL");
541 setChange("RENAME TABLE sysconfig TO tt_config");
542 setChange("ALTER TABLE tt_config DROP sysc_id");
543 setChange("ALTER TABLE tt_config CHANGE sysc_id_u user_id int(11) NOT NULL");
544 setChange("ALTER TABLE tt_config CHANGE sysc_name param_name varchar(32) NOT NULL");
545 setChange("ALTER TABLE tt_config CHANGE sysc_value param_value varchar(80) default NULL");
546 setChange("create unique index param_idx on tt_config(user_id, param_name)");
547 setChange("ALTER TABLE tt_log ADD COLUMN invoice_id int(11) default NULL");
548 setChange("ALTER TABLE tt_projects ADD COLUMN description varchar(255) default NULL");
549 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`))");
550 setChange("ALTER TABLE tt_invoices drop number");
551 setChange("ALTER TABLE tt_invoices drop client_name");
552 setChange("ALTER TABLE tt_invoices drop client_addr");
553 setChange("ALTER TABLE tt_invoices drop comment");
554 setChange("ALTER TABLE tt_invoices drop tax");
555 setChange("ALTER TABLE tt_invoices ADD COLUMN name varchar(80) NOT NULL");
556 setChange("ALTER TABLE tt_invoices ADD COLUMN client_id int(11) NOT NULL");
557 setChange("ALTER TABLE tt_invoices ADD COLUMN start_date date NOT NULL");
558 setChange("ALTER TABLE tt_invoices ADD COLUMN end_date date NOT NULL");
559 setChange("create unique index name_idx on tt_invoices(team_id, name)");
560 setChange("drop index ub_id_u on tt_user_project_binds");
561 setChange("create unique index bind_idx on tt_user_project_binds(user_id, project_id)");
562 setChange("create index client_idx on tt_log(client_id)");
563 setChange("create index invoice_idx on tt_log(invoice_id)");
566 if ($_POST["convert1579to1600"]) {
567 setChange("ALTER TABLE tt_invoices ADD COLUMN date date NOT NULL");
568 setChange("ALTER TABLE tt_teams ADD COLUMN custom_logo tinyint(4) default '0'");
569 setChange("ALTER TABLE tt_tasks ADD COLUMN description varchar(255) default NULL");
570 setChange("ALTER TABLE tt_projects MODIFY name varchar(80) COLLATE utf8_bin NOT NULL");
571 setChange("ALTER TABLE tt_users MODIFY login varchar(50) COLLATE utf8_bin NOT NULL");
572 setChange("ALTER TABLE tt_tasks MODIFY name varchar(80) COLLATE utf8_bin NOT NULL");
573 setChange("ALTER TABLE tt_invoices MODIFY name varchar(80) COLLATE utf8_bin NOT NULL");
574 setChange("ALTER TABLE tt_clients MODIFY name varchar(80) COLLATE utf8_bin NOT NULL");
575 setChange("ALTER TABLE tt_clients ADD COLUMN projects text default NULL");
576 setChange("ALTER TABLE tt_custom_field_log ADD COLUMN option_id int(11) default NULL");
577 setChange("ALTER TABLE tt_teams ADD COLUMN tracking_mode smallint(2) NOT NULL DEFAULT '2'");
578 setChange("ALTER TABLE tt_teams ADD COLUMN record_type smallint(2) NOT NULL DEFAULT '0'");
579 setChange("ALTER TABLE tt_invoices DROP start_date");
580 setChange("ALTER TABLE tt_invoices DROP end_date");
583 if ($_POST["convert1600to1900"]) {
584 setChange("DROP TABLE IF EXISTS tt_invoice_headers");
585 setChange("ALTER TABLE tt_fav_reports ADD COLUMN `client_id` int(11) default NULL");
586 setChange("ALTER TABLE tt_fav_reports ADD COLUMN `cf_1_option_id` int(11) default NULL");
587 setChange("ALTER TABLE tt_fav_reports ADD COLUMN `show_client` tinyint(4) NOT NULL default '0'");
588 setChange("ALTER TABLE tt_fav_reports ADD COLUMN `show_invoice` tinyint(4) NOT NULL default '0'");
589 setChange("ALTER TABLE tt_fav_reports ADD COLUMN `group_by` varchar(20) default NULL");
590 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`))");
591 setChange("create index date_idx on tt_expense_items(date)");
592 setChange("create index user_idx on tt_expense_items(user_id)");
593 setChange("create index client_idx on tt_expense_items(client_id)");
594 setChange("create index project_idx on tt_expense_items(project_id)");
595 setChange("create index invoice_idx on tt_expense_items(invoice_id)");
596 setChange("ALTER TABLE tt_fav_reports DROP sort_by");
597 setChange("ALTER TABLE tt_fav_reports DROP show_empty_days");
598 setChange("ALTER TABLE tt_invoices DROP discount");
599 setChange("ALTER TABLE tt_users ADD COLUMN `client_id` int(11) default NULL");
600 setChange("ALTER TABLE tt_teams ADD COLUMN `decimal_mark` char(1) NOT NULL default '.'");
601 setChange("ALTER TABLE tt_fav_reports ADD COLUMN `invoice` tinyint(4) default NULL");
602 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`))");
603 setChange("ALTER TABLE tt_cron ADD COLUMN `team_id` int(11) NOT NULL");
604 setChange("create index client_idx on tt_client_project_binds(client_id)");
605 setChange("create index project_idx on tt_client_project_binds(project_id)");
606 setChange("ALTER TABLE tt_log ADD COLUMN status tinyint(4) default '1'");
607 setChange("ALTER TABLE tt_custom_field_log ADD COLUMN status tinyint(4) default '1'");
608 setChange("ALTER TABLE tt_expense_items ADD COLUMN status tinyint(4) default '1'");
609 setChange("ALTER TABLE tt_invoices ADD COLUMN status tinyint(4) default '1'");
610 setChange("DROP INDEX name_idx on tt_invoices");
611 setChange("create unique index name_idx on tt_invoices(team_id, name, status)");
612 setChange("ALTER TABLE tt_teams ADD COLUMN lock_spec varchar(255) default NULL");
613 setChange("ALTER TABLE tt_teams DROP locktime");
614 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`))");
615 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");
616 setChange("ALTER TABLE `tt_teams` ADD `workday_hours` SMALLINT NULL DEFAULT '8' AFTER `lock_spec`");
617 setChange("UPDATE `tt_teams` SET `workday_hours` = 8");
618 setChange("ALTER TABLE tt_teams DROP daily_working_hours");
621 // The update_clients function updates projects field in tt_clients table.
622 if ($_POST["update_clients"]) {
623 $mdb2 = getConnection();
624 $sql = "select id from tt_clients where status = 1 or status = 0";
625 $res = $mdb2->query($sql);
626 if (is_a($res, 'PEAR_Error')) {
627 die($res->getMessage());
630 $clients_updated = 0;
631 // Iterate through clients.
632 while ($val = $res->fetchRow()) {
633 $client_id = $val['id'];
635 // Get projects binds for client.
636 $sql = "select cpb.project_id from tt_client_project_binds cpb
637 left join tt_projects p on (p.id = cpb.project_id)
638 where cpb.client_id = $client_id order by p.name";
640 $result = $mdb2->query($sql);
641 if (is_a($result, 'PEAR_Error'))
642 die($result->getMessage());
644 $project_arr = array();
645 while ($value = $result->fetchRow()) {
646 $project_arr[] = $value['project_id'];
648 $comma_separated = implode(',', $project_arr); // This is a comma-separated list of associated project ids.
650 // Update the projects field.
651 $sql = "update tt_clients set projects = ".$mdb2->quote($comma_separated)." where id = $client_id";
652 $affected = $mdb2->exec($sql);
653 if (is_a($affected, 'PEAR_Error'))
654 die($affected->getMessage());
655 $clients_updated += $affected;
657 print "Updated $clients_updated clients...<br>\n";
660 // The update_custom_fields function updates option_id field field in tt_custom_field_log table.
661 if ($_POST['update_custom_fields']) {
662 $mdb2 = getConnection();
663 $sql = "update tt_custom_field_log set option_id = value where field_id in (select id from tt_custom_fields where type = 2)";
664 $affected = $mdb2->exec($sql);
665 if (is_a($affected, 'PEAR_Error'))
666 die($affected->getMessage());
668 print "Updated $affected custom fields...<br>\n";
671 // The update_tracking_mode function sets the tracking_mode field in tt_teams table to 2 (== MODE_PROJECTS_AND_TASKS).
672 if ($_POST['update_tracking_mode']) {
673 $mdb2 = getConnection();
674 $sql = "update tt_teams set tracking_mode = 2 where tracking_mode = 0";
675 $affected = $mdb2->exec($sql);
676 if (is_a($affected, 'PEAR_Error'))
677 die($affected->getMessage());
679 print "Updated $affected teams...<br>\n";
682 if ($_POST["cleanup"]) {
684 $mdb2 = getConnection();
685 $inactive_teams = ttTeamHelper::getInactiveTeams();
687 $count = count($inactive_teams);
688 print "$count inactive teams found...<br>\n";
689 for ($i = 0; $i < $count; $i++) {
690 print " deleting team ".$inactive_teams[$i]."<br>\n";
691 $res = ttTeamHelper::delete($inactive_teams[$i]);
694 setChange("OPTIMIZE TABLE tt_client_project_binds");
695 setChange("OPTIMIZE TABLE tt_clients");
696 setChange("OPTIMIZE TABLE tt_config");
697 setChange("OPTIMIZE TABLE tt_custom_field_log");
698 setChange("OPTIMIZE TABLE tt_custom_field_options");
699 setChange("OPTIMIZE TABLE tt_custom_fields");
700 setChange("OPTIMIZE TABLE tt_expense_items");
701 setChange("OPTIMIZE TABLE tt_fav_reports");
702 setChange("OPTIMIZE TABLE tt_invoices");
703 setChange("OPTIMIZE TABLE tt_log");
704 setChange("OPTIMIZE TABLE tt_monthly_quota");
705 setChange("OPTIMIZE TABLE tt_project_task_binds");
706 setChange("OPTIMIZE TABLE tt_projects");
707 setChange("OPTIMIZE TABLE tt_tasks");
708 setChange("OPTIMIZE TABLE tt_teams");
709 setChange("OPTIMIZE TABLE tt_tmp_refs");
710 setChange("OPTIMIZE TABLE tt_user_project_binds");
711 setChange("OPTIMIZE TABLE tt_users");
722 <table width="80%" border="1" cellpadding="10" cellspacing="0">
724 <td width="80%"><b>Create database structure (v1.9.30)</b>
725 <br>(applies only to new installations, do not execute when updating)</br></td><td><input type="submit" name="crstructure" value="Create"></td>
731 <table width="80%" border="1" cellpadding="10" cellspacing="0">
733 <td>Update database structure (v0.5 to v0.7)</td><td><input type="submit" name="convert5to7" value="Update"></td>
736 <td>Update database structure (v0.7 to v1.3.3)</td>
737 <td><input type="submit" name="convert7to133" value="Update"><br><input type="submit" name="update_projects" value="Update projects"></td>
740 <td>Update database structure (v1.3.3 to v1.3.40)</td>
741 <td><input type="submit" name="convert133to1340" value="Update"><br><input type="submit" name="update_companies" value="Update companies"></td>
744 <td>Update database structure (v1.3.40 to v1.4.85)</td>
745 <td><input type="submit" name="convert1340to1485" value="Update"><br><input type="submit" name="update_to_team_id" value="Update team_id"></td>
748 <td>Update database structure (v1.4.85 to v1.5.79)</td>
749 <td><input type="submit" name="convert1485to1579" value="Update"></td>
752 <td>Update database structure (v1.5.79 to v1.6)</td>
753 <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>
756 <td>Update database structure (v1.6 to v1.9)</td>
757 <td><input type="submit" name="convert1600to1900" value="Update"><br></td>
761 <h2>DB Maintenance</h2>
762 <table width="80%" border="1" cellpadding="10" cellspacing="0">
764 <td width="80%">Clean up DB from inactive teams</td><td><input type="submit" name="cleanup" value="Clean up"></td>