X-Git-Url: http://wagnertech.de/git?a=blobdiff_plain;ds=sidebyside;f=dbinstall.php;h=ac88bc4226493bbf8c75b0e11f9bd92adef0b3b8;hb=cb8e3de960b758147b34d8323054e7de70548619;hp=0aaa8b49b83ce517547c34a6662618212e45a925;hpb=90115a9238f9a291ed91cd573c3896efe7ef5e35;p=timetracker.git diff --git a/dbinstall.php b/dbinstall.php index 0aaa8b49..ac88bc42 100755 --- a/dbinstall.php +++ b/dbinstall.php @@ -635,6 +635,7 @@ if ($_POST) { setChange("RENAME TABLE tt_monthly_quota TO tt_monthly_quotas"); setChange("ALTER TABLE tt_expense_items modify `name` text NOT NULL"); setChange("ALTER TABLE `tt_teams` ADD `uncompleted_indicators` SMALLINT(2) NOT NULL DEFAULT '0' AFTER `record_type`"); + setChange("CREATE TABLE `tt_predefined_expenses` (`id` int(11) NOT NULL auto_increment, `team_id` int(11) NOT NULL, `name` varchar(255) NOT NULL, `cost` decimal(10,2) default '0.00', PRIMARY KEY (`id`))"); } // The update_clients function updates projects field in tt_clients table.