From d7ecf3c26fe38c7f408994bfabd2e781d70aaffd Mon Sep 17 00:00:00 2001 From: Ralf Becker Date: Thu, 2 Oct 2003 14:01:20 +0000 Subject: [PATCH] setting the default for phpgw_cal_user.cal_type to 'u' direct on the first update from 0.9.13.007 --- calendar/setup/tables_update.inc.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/calendar/setup/tables_update.inc.php b/calendar/setup/tables_update.inc.php index db0c882b2a..2323bafc1e 100644 --- a/calendar/setup/tables_update.inc.php +++ b/calendar/setup/tables_update.inc.php @@ -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']; }