Index: setup/tables_baseline.inc.php =================================================================== RCS file: /var/cvs/phpgroupware/nntp/setup/tables_baseline.inc.php,v retrieving revision 1.1 diff -u -r1.1 tables_baseline.inc.php --- setup/tables_baseline.inc.php 11 Jun 2001 17:19:03 -0000 1.1 +++ setup/tables_baseline.inc.php 14 Nov 2003 08:01:28 -0000 @@ -30,7 +30,7 @@ 'fd' => array( 'con' => array('type' => 'int', 'precision' => 4, 'nullable' => False), 'msg' => array('type' => 'int', 'precision' => 4, 'nullable' => False), - 'uid' => array('type' => 'varchar', 'precision' => 255, 'default' => ''), + 'n_uid' => array('type' => 'varchar', 'precision' => 255, 'default' => ''), 'udate' => array('type' => 'int', 'precision' => 4, 'default' => 0), 'path' => array('type' => 'varchar', 'precision' => 255, 'default' => ''), 'fromadd' => array('type' => 'varchar', 'precision' => 255, 'default' => ''), Index: setup/tables_current.inc.php =================================================================== RCS file: /var/cvs/phpgroupware/nntp/setup/tables_current.inc.php,v retrieving revision 1.1 diff -u -r1.1 tables_current.inc.php --- setup/tables_current.inc.php 4 Jun 2001 14:04:13 -0000 1.1 +++ setup/tables_current.inc.php 14 Nov 2003 08:01:28 -0000 @@ -30,7 +30,7 @@ 'fd' => array( 'con' => array('type' => 'int', 'precision' => 4, 'nullable' => False), 'msg' => array('type' => 'int', 'precision' => 4, 'nullable' => False), - 'uid' => array('type' => 'varchar', 'precision' => 255, 'default' => ''), + 'n_uid' => array('type' => 'varchar', 'precision' => 255, 'default' => ''), 'udate' => array('type' => 'int', 'precision' => 4, 'default' => 0), 'path' => array('type' => 'varchar', 'precision' => 255, 'default' => ''), 'fromadd' => array('type' => 'varchar', 'precision' => 255, 'default' => ''), Index: setup/tables_update.inc.php =================================================================== RCS file: setup/tables_update.inc.php diff -N setup/tables_update.inc.php --- /dev/null 1 Jan 1970 00:00:00 -0000 +++ setup/tables_update.inc.php 14 Nov 2003 08:01:28 -0000 @@ -0,0 +1,21 @@ +<?php + /**************************************************************************\ + * phpGroupWare - Setup * + * http://www.phpgroupware.org * + * -------------------------------------------- * + * This program is free software; you can redistribute it and/or modify it * + * under the terms of the GNU General Public License as published by the * + * Free Software Foundation; either version 2 of the License, or (at your * + * option) any later version. * + \**************************************************************************/ + /* $Id: tables_update.inc.php,v 1.15.2.1.2.9 2003/10/23 11:16:35 ceb Exp $ */ + + $test[] = '0.0'; + function nntp_upgrade0_0() + { + $GLOBALS['setup_info']->oProc->RenameColumn('news_msg','uid','n_uid',True); + + $GLOBALS['setup_info']['meerkat']['currentver'] = '0.1'; + return $GLOBALS['setup_info']['meerkat']['currentver']; + } +?>