X-Git-Url: http://wagnertech.de/git?a=blobdiff_plain;f=dbinstall.php;h=2b0d896ca3fccf2f4e80a6113fca7af4e3bfb130;hb=de518d7584b24c438ac562b3f1eca4e96568c85a;hp=0aaa8b49b83ce517547c34a6662618212e45a925;hpb=90115a9238f9a291ed91cd573c3896efe7ef5e35;p=timetracker.git diff --git a/dbinstall.php b/dbinstall.php index 0aaa8b49..2b0d896c 100755 --- a/dbinstall.php +++ b/dbinstall.php @@ -78,7 +78,9 @@ if ($request->isGet()) { } // Check if PHP version is good enough. - $required_version = '5.2.1'; // Something in TCPDF library does not work below this one. + // $required_version = '5.2.1'; // Something in TCPDF library does not work below this one. + $required_version = '5.4.0'; // Week view (week.php) requires 5.4 because of []-way of referencing arrays. + // This needs further investigation as we use [] elsewhere without obvious problems. if (version_compare(phpversion(), $required_version, '>=')) { echo('PHP version: '.phpversion().', good enough.
'); } else { @@ -598,7 +600,7 @@ if ($_POST) { setChange("ALTER TABLE tt_invoices DROP end_date"); } - if ($_POST["convert1600to1900"]) { + if ($_POST["convert1600to11300"]) { setChange("DROP TABLE IF EXISTS tt_invoice_headers"); setChange("ALTER TABLE tt_fav_reports ADD COLUMN `client_id` int(11) default NULL"); setChange("ALTER TABLE tt_fav_reports ADD COLUMN `cf_1_option_id` int(11) default NULL"); @@ -635,6 +637,14 @@ 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`))"); + 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. @@ -740,7 +750,7 @@ if ($_POST) {

DB Install

-
Create database structure (v1.9.30) + Create database structure (v1.13.0)
(applies only to new installations, do not execute when updating)
@@ -772,8 +782,8 @@ if ($_POST) {


- Update database structure (v1.6 to v1.9) -
+ Update database structure (v1.6 to v1.13) +