mirror of
https://github.com/EGroupware/egroupware.git
synced 2024-11-08 09:04:53 +01:00
35 lines
795 B
PHP
35 lines
795 B
PHP
<?php
|
|
/**
|
|
* eGroupWare - Setup
|
|
* 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 notifications
|
|
* @subpackage setup
|
|
* @version $Id$
|
|
*/
|
|
|
|
function notifications_upgrade0_5()
|
|
{
|
|
$GLOBALS['egw_setup']->oProc->AlterColumn('egw_notificationpopup','account_id',array(
|
|
'type' => 'int',
|
|
'precision' => '20',
|
|
'nullable' => False
|
|
));
|
|
|
|
return $GLOBALS['setup_info']['notifications']['currentver'] = '0.6';
|
|
}
|
|
|
|
|
|
function notifications_upgrade0_6()
|
|
{
|
|
return $GLOBALS['setup_info']['notifications']['currentver'] = '1.4';
|
|
}
|
|
|
|
|
|
function notifications_upgrade1_4()
|
|
{
|
|
return $GLOBALS['setup_info']['notifications']['currentver'] = '1.6';
|
|
}
|