X-Git-Url: http://wagnertech.de/gitweb/gitweb.cgi/timetracker.git/blobdiff_plain/dfc50841cd4b60eb8f2172044d6dd08785fe3df4..82113b6a111dc3f716c71fb8fb55b11845cbd697:/dbinstall.php
diff --git a/dbinstall.php b/dbinstall.php
index 8f1e867f..190ff7ee 100644
--- a/dbinstall.php
+++ b/dbinstall.php
@@ -805,7 +805,7 @@ if ($_POST) {
print "Updated $users_updated users...
\n";
}
- if ($_POST["convert11744to11779"]) {
+ if ($_POST["convert11744to11780"]) {
setChange("update `tt_roles` inner join `tt_site_config` sc on (sc.param_name = 'version_db' and sc.param_value = '1.17.44') set rights = replace(rights, 'override_punch_mode,override_date_lock', 'override_punch_mode,override_own_punch_mode,override_date_lock')");
setChange("UPDATE `tt_site_config` SET param_value = '1.17.48' where param_name = 'version_db' and param_value = '1.17.44'");
setChange("update `tt_users` inner join `tt_site_config` sc on (sc.param_name = 'version_db' and sc.param_value = '1.17.48') set role_id = (select id from tt_roles where team_id = 0 and rank = 512) where role = 324");
@@ -869,6 +869,9 @@ if ($_POST) {
setChange("UPDATE `tt_site_config` SET param_value = '1.17.78', modified = now() where param_name = 'version_db' and param_value = '1.17.77'");
setChange("update `tt_roles` inner join `tt_site_config` sc on (sc.param_name = 'version_db' and sc.param_value = '1.17.78') set rights = replace(rights, 'manage_own_settings,view_projects,view_users', 'view_own_projects,manage_own_settings,view_users')");
setChange("UPDATE `tt_site_config` SET param_value = '1.17.79', modified = now() where param_name = 'version_db' and param_value = '1.17.78'");
+ setChange("RENAME TABLE `tt_teams` TO `tt_groups`");
+ setChange("ALTER TABLE `tt_monthly_quotas` DROP FOREIGN KEY FK_TT_TEAM_CONSTRAING");
+ setChange("UPDATE `tt_site_config` SET param_value = '1.17.80', modified = now() where param_name = 'version_db' and param_value = '1.17.79'");
}
if ($_POST["cleanup"]) {
@@ -897,7 +900,7 @@ if ($_POST) {
setChange("OPTIMIZE TABLE tt_project_task_binds");
setChange("OPTIMIZE TABLE tt_projects");
setChange("OPTIMIZE TABLE tt_tasks");
- setChange("OPTIMIZE TABLE tt_teams");
+ setChange("OPTIMIZE TABLE tt_groups");
setChange("OPTIMIZE TABLE tt_tmp_refs");
setChange("OPTIMIZE TABLE tt_user_project_binds");
setChange("OPTIMIZE TABLE tt_users");
@@ -914,7 +917,7 @@ if ($_POST) {
| Create database structure (v1.17.79) + | Create database structure (v1.17.80)
(applies only to new installations, do not execute when updating) |