From a79491cd9f4cb78605bbb52fa0edfcf0ffaae555 Mon Sep 17 00:00:00 2001 From: bettina Date: Fri, 8 Jun 2001 03:44:35 +0000 Subject: [PATCH] fixed categories table description --- phpgwapi/setup/tables_current.inc.php | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/phpgwapi/setup/tables_current.inc.php b/phpgwapi/setup/tables_current.inc.php index f215dfe1ea..e559f6cb85 100644 --- a/phpgwapi/setup/tables_current.inc.php +++ b/phpgwapi/setup/tables_current.inc.php @@ -169,12 +169,12 @@ ), 'phpgw_categories' => array( 'fd' => array( - 'cat_id' => array('type' => 'auto', 'precision' => 8, 'default' => 0, 'nullable' => false), - 'cat_main' => array('type' => 'int', 'precision' => 8, 'default' => 0, 'nullable' => false), - 'cat_parent' => array('type' => 'int', 'precision' => 8, 'default' => 0, 'nullable' => false), - 'cat_level' => array('type' => 'int', 'precision' => 4, 'default' =>0, 'nullable' => false), - 'cat_owner' => array('type' => 'int', 'precision' => 8, 'default' => 0, 'nullable' => false), - 'cat_access' => array('type' => 'char', 'precision' => 7), + 'cat_id' => array('type' => 'auto', 'precision' => 4, 'default' => 0, 'nullable' => false), + 'cat_main' => array('type' => 'int', 'precision' => 4, 'default' => 0, 'nullable' => false), + 'cat_parent' => array('type' => 'int', 'precision' => 4, 'default' => 0, 'nullable' => false), + 'cat_level' => array('type' => 'int', 'precision' => 2, 'default' => 0, 'nullable' => false), + 'cat_owner' => array('type' => 'int', 'precision' => 4, 'default' => 0, 'nullable' => false), + 'cat_access' => array('type' => 'varchar', 'precision' => 7), 'cat_appname' => array('type' => 'varchar', 'precision' => 50, 'nullable' => false), 'cat_name' => array('type' => 'varchar', 'precision' => 150, 'nullable' => false), 'cat_description' => array('type' => 'varchar', 'precision' => 255, 'nullable' => false),