From fcf9716c4e6c88ef546e8dddd694f3566a7ea673 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Cornelius=20Wei=C3=9F?= Date: Thu, 28 Sep 2006 05:05:06 +0000 Subject: [PATCH] remove not longer needed tables_baseline --- timesheet/setup/tables_baseline.inc.php | 37 ------------------------- 1 file changed, 37 deletions(-) delete mode 100644 timesheet/setup/tables_baseline.inc.php diff --git a/timesheet/setup/tables_baseline.inc.php b/timesheet/setup/tables_baseline.inc.php deleted file mode 100644 index 0b336419cc..0000000000 --- a/timesheet/setup/tables_baseline.inc.php +++ /dev/null @@ -1,37 +0,0 @@ - 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) - ), - 'pk' => array('ts_id'), - 'fk' => array(), - 'ix' => array('ts_project','ts_owner'), - 'uc' => array() - ) - );