X-Git-Url: http://wagnertech.de/git?a=blobdiff_plain;f=dbinstall.php;h=6dc831aeafdb39d85585ea3aa9250fadb893cc79;hb=ad98b13400fdc2fa2299a22c9bd54c4cd27960c3;hp=07cb37d765dc689be506a1d491f7edd1d41621a6;hpb=7bafd815e19a8c4535a3684c01955fe7b789982d;p=timetracker.git diff --git a/dbinstall.php b/dbinstall.php index 07cb37d7..6dc831ae 100755 --- a/dbinstall.php +++ b/dbinstall.php @@ -709,7 +709,7 @@ if ($_POST) { setChange("ALTER TABLE `tt_log` ADD `paid` tinyint(4) NULL default '0' AFTER `billable`"); } - if ($_POST["convert11400to11719"]) { + if ($_POST["convert11400to11730"]) { setChange("ALTER TABLE `tt_teams` DROP `address`"); setChange("ALTER TABLE `tt_fav_reports` ADD `report_spec` text default NULL AFTER `user_id`"); setChange("ALTER TABLE `tt_fav_reports` ADD `paid_status` tinyint(4) default NULL AFTER `invoice`"); @@ -725,6 +725,13 @@ if ($_POST) { setChange("UPDATE `tt_monthly_quotas` SET `minutes` = 60 * `quota`"); setChange("ALTER TABLE `tt_monthly_quotas` DROP `quota`"); setChange("ALTER TABLE `tt_teams` DROP `uncompleted_indicators`"); + setChange("ALTER TABLE `tt_users` MODIFY `timestamp` timestamp default CURRENT_TIMESTAMP"); + setChange("ALTER TABLE `tt_teams` MODIFY `timestamp` timestamp default CURRENT_TIMESTAMP"); + setChange("ALTER TABLE `tt_log` MODIFY `timestamp` timestamp default CURRENT_TIMESTAMP"); + setChange("ALTER TABLE `tt_tmp_refs` MODIFY `timestamp` timestamp default CURRENT_TIMESTAMP"); + setChange("CREATE TABLE `tt_roles` (`id` int(11) NOT NULL auto_increment, `team_id` int(11) NOT NULL, `name` varchar(80) default NULL, `rank` int(11) default 0, `rights` text default NULL, `status` tinyint(4) default 1, PRIMARY KEY (`id`))"); + setChange("create unique index role_idx on tt_roles(team_id, rank, status)"); + setChange("ALTER TABLE `tt_roles` ADD `description` varchar(255) default NULL AFTER `name`"); } if ($_POST["cleanup"]) { @@ -757,6 +764,7 @@ if ($_POST) { setChange("OPTIMIZE TABLE tt_tmp_refs"); setChange("OPTIMIZE TABLE tt_user_project_binds"); setChange("OPTIMIZE TABLE tt_users"); + setChange("OPTIMIZE TABLE tt_roles"); } print "done.
\n"; @@ -769,7 +777,7 @@ if ($_POST) {

DB Install

-
Create database structure (v1.17.19) + Create database structure (v1.17.30)
(applies only to new installations, do not execute when updating)
@@ -805,8 +813,8 @@ if ($_POST) {
- Update database structure (v1.14 to v1.17.19) -
+ Update database structure (v1.14 to v1.17.30) +