egroupware/timesheet/setup/tables_current.inc.php

68 lines
4.2 KiB
PHP
Raw Normal View History

2005-12-19 05:23:14 +01:00
<?php
/**
* TimeSheet - setup current tables
*
* @link http://www.egroupware.org
* @author Ralf Becker <RalfBecker-AT-outdoor-training.de>
* @package timesheet
* @subpackage setup
* @copyright (c) 2005-14 by Ralf Becker <RalfBecker-AT-outdoor-training.de>
* @license http://opensource.org/licenses/gpl-license.php GPL - GNU General Public License
* @version $Id$
*/
2005-12-19 05:23:14 +01:00
$phpgw_baseline = array(
'egw_timesheet' => array(
'fd' => array(
2012-09-21 13:57:35 +02:00
'ts_id' => array('type' => 'auto','nullable' => False,'comment' => 'id of the timesheet entry'),
'ts_project' => array('type' => 'varchar','precision' => '255','comment' => 'project title'),
'ts_title' => array('type' => 'varchar','precision' => '255','nullable' => False,'comment' => 'title of the timesheet entry'),
'ts_description' => array('type' => 'varchar','precision' => '16384','comment' => 'description of the timesheet entry'),
'ts_start' => array('type' => 'int','meta' => 'timestamp','precision' => '8','nullable' => False,'comment' => 'timestamp of the startdate'),
'ts_duration' => array('type' => 'int','precision' => '4','nullable' => False,'default' => '0','comment' => 'duration of the timesheet-entry'),
2012-09-21 13:57:35 +02:00
'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','meta' => 'category','precision' => '4','default' => '0','comment' => 'category'),
'ts_owner' => array('type' => 'int','meta' => 'user','precision' => '4','nullable' => False,'comment' => 'owner of the timesheet'),
'ts_modified' => array('type' => 'int','meta' => 'timestamp','precision' => '8','nullable' => False,'comment' => 'date modified ot the timesheet'),
'ts_modifier' => array('type' => 'int','meta' => 'user','precision' => '4','nullable' => False,'comment' => 'account id of the last modifier'),
2012-09-21 13:57:35 +02:00
'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 timesheet-entry'),
'ts_created' => array('type' => 'int','meta' => 'timestamp','precision' => '8','nullable' => False,'comment' => 'Creation date of the timesheet'),
'ts_paused' => array('type' => 'int','precision' => '4','default' => '0','comment' => 'pause time(s) of the timesheet-entry')
2007-03-08 12:25:09 +01:00
),
'pk' => array('ts_id'),
'fk' => array(),
'ix' => array('ts_project','ts_owner','ts_status'),
'uc' => array()
),
'egw_timesheet_extra' => array(
'fd' => array(
'ts_id' => array('type' => 'int','precision' => '4','nullable' => False),
'ts_extra_name' => array('type' => 'varchar','meta' => 'cfname','precision' => '64','nullable' => False),
'ts_extra_value' => array('type' => 'varchar','meta' => 'cfvalue','precision' => '16384','nullable' => False,'default' => '')
),
'pk' => array('ts_id','ts_extra_name'),
'fk' => array(),
'ix' => array(),
'uc' => array()
),
'egw_timesheet_events' => array(
'fd' => array(
'tse_id' => array('type' => 'auto','nullable' => False),
'ts_id' => array('type' => 'int','precision' => '4','comment' => 'or NULL for not yet created'),
'tse_timestamp' => array('type' => 'timestamp','nullable' => False,'comment' => 'original time'),
'tse_time' => array('type' => 'timestamp','comment' => 'edited time'),
'account_id' => array('type' => 'int','meta' => 'user','precision' => '4','nullable' => False,'comment' => 'user timesheet is for'),
'tse_modified' => array('type' => 'timestamp','nullable' => False,'default' => 'current_timestamp','comment' => 'automatic modification TS'),
'tse_modifier' => array('type' => 'int','meta' => 'user','precision' => '4','comment' => 'modifier'),
'tse_app' => array('type' => 'ascii','precision' => '24','comment' => 'app, if set on creation'),
'tse_app_id' => array('type' => 'ascii','precision' => '64','comment' => 'app-id, if set on creation'),
'tse_type' => array('type' => 'int','precision' => '16','nullable' => False,'comment' => '&1=start,&2=stop/pause,&16=overal-working-time')
),
'pk' => array('tse_id'),
'fk' => array(),
'ix' => array('ts_id'),
'uc' => array('tse_id')
)
);