mirror of
https://github.com/EGroupware/egroupware.git
synced 2024-12-26 16:48:49 +01:00
updated to reflect changes in .16: phpgw_vfs.content has to be nullable
This commit is contained in:
parent
99cb204413
commit
263f054bee
@ -147,6 +147,14 @@
|
||||
return $GLOBALS['setup_info']['phpgwapi']['currentver'];
|
||||
}
|
||||
|
||||
$test[] = '0.9.14.507';
|
||||
function phpgwapi_upgrade0_9_14_507()
|
||||
{
|
||||
// 0.9.15.001-14 are already included in 0.9.14.507
|
||||
$GLOBALS['setup_info']['phpgwapi']['currentver'] = '0.9.15.014';
|
||||
return $GLOBALS['setup_info']['phpgwapi']['currentver'];
|
||||
}
|
||||
|
||||
$test[] = '0.9.15.001';
|
||||
function phpgwapi_upgrade0_9_15_001()
|
||||
{
|
||||
@ -405,4 +413,18 @@
|
||||
$GLOBALS['setup_info']['phpgwapi']['currentver'] = '0.9.15.013';
|
||||
return $GLOBALS['setup_info']['phpgwapi']['currentver'];
|
||||
}
|
||||
|
||||
|
||||
$test[] = '0.9.15.013';
|
||||
function phpgwapi_upgrade0_9_14_506()
|
||||
{
|
||||
$GLOBALS['phpgw_setup']->oProc->AlterColumn('phpgw_vfs','content',array(
|
||||
'type' => 'text',
|
||||
'nullable' => True
|
||||
));
|
||||
|
||||
|
||||
$GLOBALS['setup_info']['phpgwapi']['currentver'] = '0.9.15.014';
|
||||
return $GLOBALS['setup_info']['phpgwapi']['currentver'];
|
||||
}
|
||||
?>
|
||||
|
Loading…
Reference in New Issue
Block a user