X-Git-Url: http://wagnertech.de/gitweb/gitweb.cgi/timetracker.git/blobdiff_plain/fd0872d9e582113346fa1e93557f370286c5c9f2..86381310c0914f345eb6c88d4e9ec621996f493c:/dbinstall.php
diff --git a/dbinstall.php b/dbinstall.php
index 9c2d041b..4d7feeb2 100644
--- a/dbinstall.php
+++ b/dbinstall.php
@@ -805,7 +805,7 @@ if ($_POST) {
print "Updated $users_updated users...
\n";
}
- if ($_POST["convert11744to11766"]) {
+ if ($_POST["convert11744to11767"]) {
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");
@@ -856,6 +856,10 @@ if ($_POST) {
setChange("ALTER TABLE `tt_teams` drop `timestamp`");
setChange("ALTER TABLE `tt_users` drop `timestamp`");
setChange("UPDATE `tt_site_config` SET param_value = '1.17.66', modified = now() where param_name = 'version_db' and param_value = '1.17.65'");
+ setChange("ALTER TABLE `tt_tmp_refs` ADD `created` datetime default NULL AFTER `timestamp`");
+ setChange("ALTER TABLE `tt_tmp_refs` drop `timestamp`");
+ setChange("delete from `tt_tmp_refs`");
+ setChange("UPDATE `tt_site_config` SET param_value = '1.17.67', modified = now() where param_name = 'version_db' and param_value = '1.17.66'");
}
if ($_POST["cleanup"]) {
@@ -901,7 +905,7 @@ if ($_POST) {
| Create database structure (v1.17.66) + | Create database structure (v1.17.67)
(applies only to new installations, do not execute when updating) |