From 83f875688f0f901611b7b6c5370e62e68b17c4cf Mon Sep 17 00:00:00 2001 From: Ralf Becker Date: Mon, 4 Jun 2001 19:23:16 +0000 Subject: [PATCH] shows now the fields of the phpgw_infolog db and not todo --- infolog/setup/tables_current.inc.php | 29 ++++++++++++++++++---------- 1 file changed, 19 insertions(+), 10 deletions(-) diff --git a/infolog/setup/tables_current.inc.php b/infolog/setup/tables_current.inc.php index 59206c9202..eaacbfc861 100644 --- a/infolog/setup/tables_current.inc.php +++ b/infolog/setup/tables_current.inc.php @@ -15,17 +15,26 @@ 'phpgw_infolog' => array( 'fd' => array( 'info_id' => array('type' => 'auto', 'nullable' => false), - 'info_type' => array('type' => 'varchar', 'precision' => 25), - 'info_id_parent' => array('type' => 'int', 'precision' => 4, 'nullable' => false), - 'info_owner' => array('type' => 'varchar', 'precision' => 25), - 'info_access' => array('type' => 'varchar', 'precision' => 10), - 'info_cat' => array('type' => 'int', 'precision' => 4), + 'info_type' => array('type' => 'varchar', 'precision' => 10), + 'info_addr_id' => array('type' => 'int', 'precision' => 11, 'nullable' => false), + 'info_proj_id' => array('type' => 'int', 'precision' => 11, 'nullable' => false), + 'info_from' => array('type' => 'varchar', 'precision' => 64), + 'info_addr' => array('type' => 'varchar', 'precision' => 64), + 'info_subject' => array('type' => 'varchar', 'precision' => 64, 'nullable' => false), 'info_des' => array('type' => 'text'), - 'info_pri' => array('type' => 'int', 'precision' => 4), - 'info_status' => array('type' => 'int', 'precision' => 4), - 'info_datecreated' => array('type' => 'int', 'precision' => 4), - 'info_startdate' => array('type' => 'int', 'precision' => 4), - 'info_enddata' => array('type' => 'int', 'precision' => 4) + 'info_owner' => array('type' => 'int', 'precision' => 11, 'nullable' => false), + 'info_responsible' => array('type' => 'int', 'precision' => 11, 'nullable' => false), + 'info_access' => array('type' => 'varchar', 'precision' => 10), + 'info_cat' => array('type' => 'int', 'precision' => 11, 'nullable' => false), + 'info_datecreated' => array('type' => 'int', 'precision' => 11, 'nullable' => false), + 'info_startdate' => array('type' => 'int', 'precision' => 11, 'nullable' => false), + 'info_enddata' => array('type' => 'int', 'precision' => 11, 'nullable' => false) + 'info_id_parent' => array('type' => 'int', 'precision' => 11, 'nullable' => false), + 'info_pri' => array('type' => 'varchar', 'precision' => 10), + 'info_time' => array('type' => 'int', 'precision' => 11, 'nullable' => false), + 'info_bill_cat' => array('type' => 'int', 'precision' => 11, 'nullable' => false), + 'info_status' => array('type' => 'varchar', 'precision' => 10), + 'info_confirm' => array('type' => 'varchar', 'precision' => 10) ), 'pk' => array('info_id'), 'fk' => array(),