X-Git-Url: http://wagnertech.de/git?a=blobdiff_plain;f=dbinstall.php;h=aea76e80f5de9bf5eb84b818d41758d7be1e4aa4;hb=0040233ec546afbe413861e356e26351468c4992;hp=e0f5b56b53ab150135270ab182082fbc99e54485;hpb=395edff71f2a114bc3cbccf1c970d4419d9db8d4;p=timetracker.git diff --git a/dbinstall.php b/dbinstall.php index e0f5b56b..aea76e80 100755 --- a/dbinstall.php +++ b/dbinstall.php @@ -636,7 +636,8 @@ 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 `task_required` 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`"); } // The update_clients function updates projects field in tt_clients table.