setting the default for phpgw_cal_user.cal_type to 'u' direct on the first update from 0.9.13.007

This commit is contained in:
Ralf Becker 2003-10-02 14:01:20 +00:00
parent 44eaf69f8f
commit d7ecf3c26f

View File

@ -922,7 +922,7 @@
'type' => 'varchar',
'precision' => '1',
'nullable' => False,
'default' => ''
'default' => 'u'
));
$GLOBALS['phpgw_setup']->oProc->CreateTable('phpgw_cal_extra',array(
@ -939,7 +939,7 @@
$GLOBALS['phpgw_setup']->oProc->DropTable('phpgw_cal_alarm');
$GLOBALS['setup_info']['calendar']['currentver'] = '0.9.16.001';
$GLOBALS['setup_info']['calendar']['currentver'] = '0.9.16.002';
return $GLOBALS['setup_info']['calendar']['currentver'];
}