X-Git-Url: http://wagnertech.de/git?a=blobdiff_plain;f=dbinstall.php;h=cb5f1c630b237da33e3362bb856a2146c0879f80;hb=6856837ddde5cc90ac5dad2e5d67204036ec3158;hp=aea76e80f5de9bf5eb84b818d41758d7be1e4aa4;hpb=9fe9642cc985b52302d93bde5a65aacb5158890f;p=timetracker.git diff --git a/dbinstall.php b/dbinstall.php index aea76e80..cb5f1c63 100755 --- a/dbinstall.php +++ b/dbinstall.php @@ -638,6 +638,11 @@ if ($_POST) { 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`))"); setChange("ALTER TABLE `tt_teams` ADD `task_required` smallint(2) NOT NULL DEFAULT '0' AFTER `tracking_mode`"); setChange("ALTER TABLE `tt_teams` ADD `project_required` smallint(2) NOT NULL DEFAULT '0' AFTER `tracking_mode`"); + setChange("ALTER TABLE `tt_cron` ADD `report_condition` varchar(255) default NULL AFTER `email`"); + setChange("ALTER TABLE `tt_fav_reports` ADD `status` tinyint(4) default '1'"); + setChange("ALTER TABLE `tt_teams` ADD `bcc_email` varchar(100) default NULL AFTER `uncompleted_indicators`"); + setChange("ALTER TABLE `tt_cron` ADD `cc` varchar(100) default NULL AFTER `email`"); + setChange("ALTER TABLE `tt_cron` ADD `subject` varchar(100) default NULL AFTER `cc`"); } // The update_clients function updates projects field in tt_clients table.