X-Git-Url: http://wagnertech.de/git?a=blobdiff_plain;f=dbinstall.php;h=4199288ebe3dd6732c2f9a875f4eaf8ff3a800aa;hb=cf9315882cd37786cc8ba5d13bf6381b935d1600;hp=3f9b8570b99ce65dfa1021a69445a2b1b3861fbc;hpb=8e24e2719b8ddaa77a3a9287cba2899e4ff3ca9e;p=timetracker.git diff --git a/dbinstall.php b/dbinstall.php index 3f9b8570..4199288e 100755 --- a/dbinstall.php +++ b/dbinstall.php @@ -636,7 +636,10 @@ if ($_POST) { 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`))"); - setChange("ALTER TABLE `tt_teams` ADD `tracking_mode_options` smallint(2) default NULL AFTER `tracking_mode`"); + 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'"); } // The update_clients function updates projects field in tt_clients table.