mirror of
https://github.com/EGroupware/egroupware.git
synced 2024-11-07 16:44:07 +01:00
76 lines
2.0 KiB
PHP
76 lines
2.0 KiB
PHP
<?php
|
|
/**
|
|
* EGroupware - TimeSheet - setup table updates
|
|
*
|
|
* @link http://www.egroupware.org
|
|
* @author Ralf Becker <RalfBecker-AT-outdoor-training.de>
|
|
* @package timesheet
|
|
* @subpackage setup
|
|
* @copyright (c) 2005-10 by Ralf Becker <RalfBecker-AT-outdoor-training.de>
|
|
* @license http://opensource.org/licenses/gpl-license.php GPL - GNU General Public License
|
|
* @version $Id$
|
|
*/
|
|
|
|
function timesheet_upgrade0_1_001()
|
|
{
|
|
$GLOBALS['egw_setup']->oProc->AddColumn('egw_timesheet','pl_id',array(
|
|
'type' => 'int',
|
|
'precision' => '4',
|
|
'default' => '0'
|
|
));
|
|
|
|
return $GLOBALS['setup_info']['timesheet']['currentver'] = '0.2.001';
|
|
}
|
|
|
|
|
|
function timesheet_upgrade0_2_001()
|
|
{
|
|
$GLOBALS['egw_setup']->oProc->CreateTable('egw_timesheet_extra',array(
|
|
'fd' => array(
|
|
'ts_id' => array('type' => 'int','precision' => '4','nullable' => False),
|
|
'ts_extra_name' => array('type' => 'varchar','precision' => '32','nullable' => False),
|
|
'ts_extra_value' => array('type' => 'varchar','precision' => '255','nullable' => False,'default' => '')
|
|
),
|
|
'pk' => array('ts_id','ts_extra_name'),
|
|
'fk' => array(),
|
|
'ix' => array(),
|
|
'uc' => array()
|
|
));
|
|
|
|
return $GLOBALS['setup_info']['timesheet']['currentver'] = '0.2.002';
|
|
}
|
|
|
|
|
|
function timesheet_upgrade0_2_002()
|
|
{
|
|
return $GLOBALS['setup_info']['timesheet']['currentver'] = '1.4';
|
|
}
|
|
|
|
|
|
function timesheet_upgrade1_4()
|
|
{
|
|
// delete empty cf's generated by 1.4
|
|
$GLOBALS['egw_setup']->db->delete('egw_timesheet_extra',"ts_extra_value=''",__LINE__,__FILE__,'timesheet');
|
|
|
|
return $GLOBALS['setup_info']['timesheet']['currentver'] = '1.6';
|
|
}
|
|
|
|
|
|
function timesheet_upgrade1_6()
|
|
{
|
|
$GLOBALS['egw_setup']->oProc->AddColumn('egw_timesheet','ts_status',array(
|
|
'type' => 'int',
|
|
'precision' => '4'
|
|
));
|
|
|
|
$GLOBALS['egw_setup']->oProc->CreateIndex('egw_timesheet','ts_status');
|
|
|
|
return $GLOBALS['setup_info']['timesheet']['currentver'] = '1.7.001';
|
|
}
|
|
|
|
|
|
function timesheet_upgrade1_7_001()
|
|
{
|
|
return $GLOBALS['setup_info']['timesheet']['currentver'] = '1.8';
|
|
}
|