mirror of
https://github.com/EGroupware/egroupware.git
synced 2024-11-08 00:54:15 +01:00
todo updates
This commit is contained in:
parent
8c2c643d6c
commit
4a2f2cba77
@ -158,7 +158,8 @@
|
||||
todo_pri int(11),
|
||||
todo_status int(11),
|
||||
todo_datecreated int(11),
|
||||
todo_datedue int(11),
|
||||
todo_startdate int(11),
|
||||
todo_enddate int(11),
|
||||
PRIMARY KEY (todo_id)
|
||||
)";
|
||||
$db->query($sql);
|
||||
|
@ -329,6 +329,17 @@
|
||||
$currentver = "0.9.4pre3";
|
||||
update_version_table();
|
||||
}
|
||||
|
||||
if ($currentver == "0.9.4pre3") {
|
||||
$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";
|
||||
update_version_table();
|
||||
}
|
||||
echo " <tr bgcolor=\"e6e6e6\">\n";
|
||||
echo " <td>Upgrade from 0.9.3 to $currentver is completed.</td>\n";
|
||||
echo " </tr>\n";
|
||||
|
@ -137,7 +137,8 @@
|
||||
todo_pri int,
|
||||
todo_status int,
|
||||
todo_datecreated int,
|
||||
todo_datedue int
|
||||
todo_startdate int,
|
||||
todo_enddate int
|
||||
)";
|
||||
$db->query($sql);
|
||||
|
||||
|
@ -330,6 +330,17 @@
|
||||
$currentver = "0.9.4pre3";
|
||||
update_version_table();
|
||||
}
|
||||
|
||||
if ($currentver == "0.9.4pre3") {
|
||||
$sql = "ALTER TABLE todo ADD todo_startdate int not null";
|
||||
$db->query($sql);
|
||||
|
||||
$sql "ALTER TABLE todo CHANGE todo_datedue todo_enddate int not null";
|
||||
$db->query($sql);
|
||||
|
||||
$currentver = "0.9.4pre4";
|
||||
update_version_table();
|
||||
}
|
||||
echo " <tr bgcolor=\"e6e6e6\">\n";
|
||||
echo " <td>Upgrade from 0.9.3 to $currentver is completed.</td>\n";
|
||||
echo " </tr>\n";
|
||||
|
Loading…
Reference in New Issue
Block a user