phpgroupware-cvs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Phpgroupware-cvs] CVS: phpgwapi/setup setup.inc.php,1.37.2.6.2.4,1.37.


From: Ralf Becker <address@hidden>
Subject: [Phpgroupware-cvs] CVS: phpgwapi/setup setup.inc.php,1.37.2.6.2.4,1.37.2.6.2.5 tables_current.inc.php,1.32.2.6.2.3,1.32.2.6.2.4 tables_update.inc.php,1.53.2.9.2.6,1.53.2.9.2.7
Date: Wed, 30 Apr 2003 19:31:09 -0400

Update of /cvsroot/phpgroupware/phpgwapi/setup
In directory subversions:/tmp/cvs-serv2068

Modified Files:
      Tag: Version-0_9_16-branch
        setup.inc.php tables_current.inc.php tables_update.inc.php 
Log Message:
skwashd: added last_mod field to contacts

Index: setup.inc.php
===================================================================
RCS file: /cvsroot/phpgroupware/phpgwapi/setup/setup.inc.php,v
retrieving revision 1.37.2.6.2.4
retrieving revision 1.37.2.6.2.5
diff -C2 -r1.37.2.6.2.4 -r1.37.2.6.2.5
*** setup.inc.php       29 Apr 2003 23:50:25 -0000      1.37.2.6.2.4
--- setup.inc.php       30 Apr 2003 23:31:07 -0000      1.37.2.6.2.5
***************
*** 16,20 ****
        $setup_info['phpgwapi']['name']      = 'phpgwapi';
        $setup_info['phpgwapi']['title']     = 'phpgwapi';
!       $setup_info['phpgwapi']['version']   = '0.9.14.503';
        $setup_info['phpgwapi']['versions']['current_header'] = '1.23';
        $setup_info['phpgwapi']['enable']    = 3;
--- 16,20 ----
        $setup_info['phpgwapi']['name']      = 'phpgwapi';
        $setup_info['phpgwapi']['title']     = 'phpgwapi';
!       $setup_info['phpgwapi']['version']   = '0.9.14.504';
        $setup_info['phpgwapi']['versions']['current_header'] = '1.23';
        $setup_info['phpgwapi']['enable']    = 3;

Index: tables_current.inc.php
===================================================================
RCS file: /cvsroot/phpgroupware/phpgwapi/setup/tables_current.inc.php,v
retrieving revision 1.32.2.6.2.3
retrieving revision 1.32.2.6.2.4
diff -C2 -r1.32.2.6.2.3 -r1.32.2.6.2.4
*** tables_current.inc.php      29 Apr 2003 23:50:25 -0000      1.32.2.6.2.3
--- tables_current.inc.php      30 Apr 2003 23:31:07 -0000      1.32.2.6.2.4
***************
*** 242,246 ****
                                'email_type' => array('type' => 
'varchar','precision' => '32','nullable' => False,'default' => 'INTERNET'),
                                'email_home' => array('type' => 
'varchar','precision' => '64','nullable' => True),
!                               'email_home_type' => array('type' => 
'varchar','precision' => '32','nullable' => False,'default' => 'INTERNET')
                        ),
                        'pk' => array('id'),
--- 242,247 ----
                                'email_type' => array('type' => 
'varchar','precision' => '32','nullable' => False,'default' => 'INTERNET'),
                                'email_home' => array('type' => 
'varchar','precision' => '64','nullable' => True),
!                               'email_home_type' => array('type' => 
'varchar','precision' => '32','nullable' => False,'default' => 'INTERNET'),
!                               'last_mod' => array('type' => 'int','precision' 
=> '4','nullable' => False)
                        ),
                        'pk' => array('id'),

Index: tables_update.inc.php
===================================================================
RCS file: /cvsroot/phpgroupware/phpgwapi/setup/tables_update.inc.php,v
retrieving revision 1.53.2.9.2.6
retrieving revision 1.53.2.9.2.7
diff -C2 -r1.53.2.9.2.6 -r1.53.2.9.2.7
*** tables_update.inc.php       29 Apr 2003 23:50:25 -0000      1.53.2.9.2.6
--- tables_update.inc.php       30 Apr 2003 23:31:07 -0000      1.53.2.9.2.7
***************
*** 624,626 ****
--- 624,640 ----
                return $GLOBALS['setup_info']['phpgwapi']['currentver'];
        }
+ 
+       $test[] = '0.9.14.503';
+       function phpgwapi_upgrade0_9_14_503()
+       {
+               
$GLOBALS['phpgw_setup']->oProc->AddColumn('phpgw_addressbook','last_mod',array(
+                               'type' => 'int',
+                               'precision' => '4',
+                               'nullable' => False
+                       ));
+ 
+               $GLOBALS['setup_info']['phpgwapi']['currentver'] = '0.9.14.504';
+               return $GLOBALS['setup_info']['phpgwapi']['currentver'];
+       }
+ 
  ?>





reply via email to

[Prev in Thread] Current Thread [Next in Thread]