From: Nik Okuntseff Date: Wed, 21 Mar 2018 19:50:58 +0000 (+0000) Subject: Introduced audit fields in tt_teams table. X-Git-Tag: timetracker_1.19-1~983 X-Git-Url: http://wagnertech.de/git?a=commitdiff_plain;h=7482d40143c40f58935fc37ecda54f2a60b2611e;p=timetracker.git Introduced audit fields in tt_teams table. --- diff --git a/WEB-INF/templates/footer.tpl b/WEB-INF/templates/footer.tpl index 0f5a4f2d..972eaf23 100644 --- a/WEB-INF/templates/footer.tpl +++ b/WEB-INF/templates/footer.tpl @@ -12,7 +12,7 @@
- - - + +
 Anuko Time Tracker 1.17.64.4126 | Copyright © Anuko | +  Anuko Time Tracker 1.17.65.4127 | Copyright © Anuko | {$i18n.footer.credits} | {$i18n.footer.license} | {$i18n.footer.improve} diff --git a/dbinstall.php b/dbinstall.php index ff0820b6..7fb35e83 100644 --- a/dbinstall.php +++ b/dbinstall.php @@ -805,7 +805,7 @@ if ($_POST) { print "Updated $users_updated users...
\n"; } - if ($_POST["convert11744to11764"]) { + if ($_POST["convert11744to11765"]) { 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"); @@ -844,6 +844,13 @@ if ($_POST) { setChange("update `tt_log` l inner join `tt_site_config` sc on (sc.param_name = 'version_db' and sc.param_value = '1.17.61') set l.created = l.timestamp where l.created is null"); setChange("ALTER TABLE `tt_log` drop `timestamp`"); setChange("UPDATE `tt_site_config` SET param_value = '1.17.64', modified = now() where param_name = 'version_db' and param_value = '1.17.61'"); + setChange("ALTER TABLE `tt_teams` ADD `created` datetime default NULL AFTER `config`"); + setChange("ALTER TABLE `tt_teams` ADD `created_ip` varchar(45) default NULL AFTER `created`"); + setChange("ALTER TABLE `tt_teams` ADD `created_by` int(11) default NULL AFTER `created_ip`"); + setChange("ALTER TABLE `tt_teams` ADD `modified` datetime default NULL AFTER `created_by`"); + setChange("ALTER TABLE `tt_teams` ADD `modified_ip` varchar(45) default NULL AFTER `modified`"); + setChange("ALTER TABLE `tt_teams` ADD `modified_by` int(11) default NULL AFTER `modified_ip`"); + setChange("UPDATE `tt_site_config` SET param_value = '1.17.65', modified = now() where param_name = 'version_db' and param_value = '1.17.64'"); } if ($_POST["cleanup"]) { @@ -889,7 +896,7 @@ if ($_POST) {

DB Install

-
Create database structure (v1.17.64) + Create database structure (v1.17.65)
(applies only to new installations, do not execute when updating)
@@ -929,8 +936,8 @@ if ($_POST) {

Update database structure (v1.17.44 to v1.17.64)Update database structure (v1.17.44 to v1.17.65)
diff --git a/mysql.sql b/mysql.sql index 61b39098..931f9bdc 100644 --- a/mysql.sql +++ b/mysql.sql @@ -33,6 +33,12 @@ CREATE TABLE `tt_teams` ( `workday_minutes` smallint(4) default 480, # number of work minutes in a regular working day `custom_logo` tinyint(4) default 0, # whether to use a custom logo or not `config` text default NULL, # miscellaneous team configuration settings + `created` datetime default NULL, # creation timestamp + `created_ip` varchar(45) default NULL, # creator ip + `created_by` int(11) default NULL, # creator user_id + `modified` datetime default NULL, # modification timestamp + `modified_ip` varchar(45) default NULL, # modifier ip + `modified_by` int(11) default NULL, # modifier user_id `status` tinyint(4) default 1, # team status PRIMARY KEY (`id`) );