X-Git-Url: http://wagnertech.de/gitweb/gitweb.cgi/timetracker.git/blobdiff_plain/c360da4bcfd113a87bc156e0f009e968d8a8bf07..7243c8da5a23936555f2a7adc1abf6f297a4e746:/dbinstall.php
diff --git a/dbinstall.php b/dbinstall.php
index b04a1f69..9c2d041b 100644
--- a/dbinstall.php
+++ b/dbinstall.php
@@ -805,7 +805,7 @@ if ($_POST) {
print "Updated $users_updated users...
\n";
}
- if ($_POST["convert11744to11765"]) {
+ if ($_POST["convert11744to11766"]) {
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");
@@ -853,6 +853,9 @@ if ($_POST) {
setChange("UPDATE `tt_site_config` SET param_value = '1.17.65', modified = now() where param_name = 'version_db' and param_value = '1.17.64'");
setChange("update `tt_teams` t inner join `tt_site_config` sc on (sc.param_name = 'version_db' and sc.param_value = '1.17.65') set t.created = t.timestamp where t.created is null");
setChange("update `tt_users` u inner join `tt_site_config` sc on (sc.param_name = 'version_db' and sc.param_value = '1.17.65') set u.created = u.timestamp where u.created is null");
+ 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'");
}
if ($_POST["cleanup"]) {
@@ -898,7 +901,7 @@ if ($_POST) {
| Create database structure (v1.17.65) + | Create database structure (v1.17.66)
(applies only to new installations, do not execute when updating) |