From fef5a006234e45c45f792955476fd833a7d727ae Mon Sep 17 00:00:00 2001 From: Ralf Becker Date: Fri, 21 Sep 2012 11:57:35 +0000 Subject: [PATCH] docu update --- timesheet/setup/tables_current.inc.php | 28 +++++++++++++------------- 1 file changed, 14 insertions(+), 14 deletions(-) diff --git a/timesheet/setup/tables_current.inc.php b/timesheet/setup/tables_current.inc.php index e5874fd2e3..487a1155f4 100644 --- a/timesheet/setup/tables_current.inc.php +++ b/timesheet/setup/tables_current.inc.php @@ -14,20 +14,20 @@ $phpgw_baseline = array( 'egw_timesheet' => array( 'fd' => array( - 'ts_id' => array('type' => 'auto','nullable' => False), - 'ts_project' => array('type' => 'varchar','precision' => '80'), - 'ts_title' => array('type' => 'varchar','precision' => '80','nullable' => False), - 'ts_description' => array('type' => 'text'), - 'ts_start' => array('type' => 'int','precision' => '8','nullable' => False), - 'ts_duration' => array('type' => 'int','precision' => '8','nullable' => False,'default' => '0'), - 'ts_quantity' => array('type' => 'float','precision' => '8','nullable' => False), - 'ts_unitprice' => array('type' => 'float','precision' => '4'), - 'cat_id' => array('type' => 'int','precision' => '4','default' => '0'), - 'ts_owner' => array('type' => 'int','precision' => '4','nullable' => False), - 'ts_modified' => array('type' => 'int','precision' => '8','nullable' => False), - 'ts_modifier' => array('type' => 'int','precision' => '4','nullable' => False), - 'pl_id' => array('type' => 'int','precision' => '4','default' => '0'), - 'ts_status' => array('type' => 'int','precision' => '4') + 'ts_id' => array('type' => 'auto','nullable' => False,'comment' => 'id of the timesheet entry'), + 'ts_project' => array('type' => 'varchar','precision' => '80','comment' => 'project title'), + 'ts_title' => array('type' => 'varchar','precision' => '80','nullable' => False,'comment' => 'title of the timesheet entry'), + 'ts_description' => array('type' => 'text','comment' => 'description of the timesheet entry'), + 'ts_start' => array('type' => 'int','precision' => '8','nullable' => False,'comment' => 'timestamp of the startdate'), + 'ts_duration' => array('type' => 'int','precision' => '8','nullable' => False,'default' => '0','comment' => 'duration of the timesheet-entry'), + 'ts_quantity' => array('type' => 'float','precision' => '8','nullable' => False,'comment' => 'quantity'), + 'ts_unitprice' => array('type' => 'float','precision' => '4','comment' => 'unitprice'), + 'cat_id' => array('type' => 'int','precision' => '4','default' => '0','comment' => 'category'), + 'ts_owner' => array('type' => 'int','precision' => '4','nullable' => False,'comment' => 'owner of the timesheet'), + 'ts_modified' => array('type' => 'int','precision' => '8','nullable' => False,'comment' => 'date modified ot the timesheet'), + 'ts_modifier' => array('type' => 'int','precision' => '4','nullable' => False,'comment' => 'account id of the last modifier'), + 'pl_id' => array('type' => 'int','precision' => '4','default' => '0','comment' => 'id of the linked project'), + 'ts_status' => array('type' => 'int','precision' => '4','comment' => 'status of the timeshhet-emtry') ), 'pk' => array('ts_id'), 'fk' => array(),