missed one of the versions in my conversion to the new format

This commit is contained in:
seek3r 2000-12-14 11:17:33 +00:00
parent 4e1d51fdc1
commit a14b64446c

View File

@ -338,6 +338,11 @@
$test[] = "0.9.4pre3";
function upgrade0_9_4pre3(){
global $currentver, $oldversion, $phpgw_info, $db;
$sql = "ALTER TABLE todo ADD todo_startdate int(11) not null";
$db->query($sql);
$sql = "ALTER TABLE todo CHANGE todo_datedue todo_enddate int(11) not null";
$db->query($sql);
$currentver = "0.9.4pre4";
}