From d14316cc8d34b38c45a2cd5148d48e4ffd66a573 Mon Sep 17 00:00:00 2001 From: Miles Lott Date: Fri, 12 Oct 2001 17:42:14 +0000 Subject: [PATCH] Fix parameter list for createtable call in 0.9.13 upgrade --- phpgwapi/setup/tables_update.inc.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/phpgwapi/setup/tables_update.inc.php b/phpgwapi/setup/tables_update.inc.php index 1edd2ca454..261224a8c8 100644 --- a/phpgwapi/setup/tables_update.inc.php +++ b/phpgwapi/setup/tables_update.inc.php @@ -2139,7 +2139,7 @@ function phpgwapi_upgrade0_9_13_013() { $GLOBALS['phpgw_setup']->oProc->CreateTable( - 'phpgw_history_log' => array( + 'phpgw_history_log', array( 'fd' => array( 'history_id' => array('type' => 'auto', 'precision' => 4, 'nullable' => False), 'history_record_id' => array('type' => 'int', 'precision' => 4, 'nullable' => False), @@ -2161,4 +2161,4 @@ return $GLOBALS['setup_info']['phpgwapi']['currentver']; } -?> \ No newline at end of file +?>