<br>
<table cellspacing="0" cellpadding="4" width="100%" border="0">
<tr>
- <td align="center"> Anuko Time Tracker 1.9.36.3570 | Copyright © <a href="https://www.anuko.com/lp/tt_3.htm" target="_blank">Anuko</a> |
+ <td align="center"> Anuko Time Tracker 1.9.37.3571 | Copyright © <a href="https://www.anuko.com/lp/tt_3.htm" target="_blank">Anuko</a> |
<a href="https://www.anuko.com/lp/tt_4.htm" target="_blank">{$i18n.footer.credits}</a> |
<a href="https://www.anuko.com/lp/tt_5.htm" target="_blank">{$i18n.footer.license}</a> |
<a href="https://www.anuko.com/lp/tt_7.htm" target="_blank">{$i18n.footer.improve}</a>
}
if ($_POST["convert5to7"]) {
- setChange("alter table `activity_log` CHANGE al_comment al_comment BLOB");
+ setChange("alter table `activity_log` CHANGE al_comment al_comment text");
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`))");
setChange("alter table `companies` add c_locktime int(4) default -1");
setChange("alter table `activity_log` add al_billable tinyint(4) default 0");
setChange("ALTER TABLE tt_log CHANGE al_project_id project_id int(11) NOT NULL");
setChange("ALTER TABLE tt_log MODIFY project_id int(11) default NULL");
setChange("ALTER TABLE tt_log CHANGE al_activity_id task_id int(11) default NULL");
- setChange("ALTER TABLE tt_log CHANGE al_comment comment blob");
+ setChange("ALTER TABLE tt_log CHANGE al_comment comment text");
setChange("ALTER TABLE tt_log CHANGE al_billable billable tinyint(4) default '0'");
setChange("drop index al_user_id_idx on tt_log");
setChange("drop index al_project_id_idx on tt_log");
`project_id` int(11) default NULL, # project id
`task_id` int(11) default NULL, # task id
`invoice_id` int(11) default NULL, # invoice id
- `comment` blob, # user provided comment for time record
+ `comment` text, # user provided comment for time record
`billable` tinyint(4) default '0', # whether the record is billable or not
`status` tinyint(4) default '1', # time record status
PRIMARY KEY (`id`)