mirror of
https://github.com/EGroupware/egroupware.git
synced 2024-11-08 09:04:53 +01:00
44 lines
1.1 KiB
PHP
Executable File
44 lines
1.1 KiB
PHP
Executable File
<?php
|
|
/**
|
|
* EGroupware - Setup
|
|
*
|
|
* @link http://www.egroupware.org
|
|
* Created by eTemplates DB-Tools written by ralfbecker@outdoor-training.de
|
|
*
|
|
* @license http://opensource.org/licenses/gpl-license.php GPL - GNU General Public License
|
|
* @package importexport
|
|
* @subpackage setup
|
|
* @version $Id: class.db_tools.inc.php 21408 2006-04-21 10:31:06Z nelius_weiss $
|
|
*/
|
|
|
|
function importexport_upgrade0_002()
|
|
{
|
|
$GLOBALS['egw_setup']->oProc->AddColumn('egw_importexport_definitions','description',array(
|
|
'type' => 'varchar',
|
|
'precision' => '255'
|
|
));
|
|
|
|
return $GLOBALS['setup_info']['importexport']['currentver'] = '0.003';
|
|
}
|
|
|
|
|
|
function importexport_upgrade0_003()
|
|
{
|
|
return $GLOBALS['setup_info']['importexport']['currentver'] = '1.4';
|
|
}
|
|
|
|
|
|
function importexport_upgrade1_4()
|
|
{
|
|
$sql = 'UPDATE egw_importexport_definitions SET plugin = CONCAT(application, "_", plugin)';
|
|
|
|
$GLOBALS['egw_setup']->db->query($sql, __LINE__, __FILE__);
|
|
return $GLOBALS['setup_info']['importexport']['currentver'] = '1.7.001';
|
|
}
|
|
|
|
|
|
function importexport_upgrade1_7_001()
|
|
{
|
|
return $GLOBALS['setup_info']['importexport']['currentver'] = '1.8';
|
|
}
|