From 3193278e0a0151097ef9e5b6f38bc0c239b9a08c Mon Sep 17 00:00:00 2001 From: Nik Okuntseff Date: Sun, 18 Mar 2018 20:13:50 +0000 Subject: [PATCH] Added audit fields to tt_log table. --- WEB-INF/templates/footer.tpl | 2 +- dbinstall.php | 15 +++++++++++---- mysql.sql | 12 +++++++++--- 3 files changed, 21 insertions(+), 8 deletions(-) diff --git a/WEB-INF/templates/footer.tpl b/WEB-INF/templates/footer.tpl index 3c74775c..e41b406e 100644 --- a/WEB-INF/templates/footer.tpl +++ b/WEB-INF/templates/footer.tpl @@ -12,7 +12,7 @@
- - - + +
 Anuko Time Tracker 1.17.55.4103 | Copyright © Anuko | +  Anuko Time Tracker 1.17.56.4104 | Copyright © Anuko | {$i18n.footer.credits} | {$i18n.footer.license} | {$i18n.footer.improve} diff --git a/dbinstall.php b/dbinstall.php index d4817970..d1159eaa 100644 --- a/dbinstall.php +++ b/dbinstall.php @@ -805,7 +805,7 @@ if ($_POST) { print "Updated $users_updated users...
\n"; } - if ($_POST["convert11744to11753"]) { + if ($_POST["convert11744to11756"]) { 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"); @@ -825,6 +825,13 @@ if ($_POST) { setChange("UPDATE `tt_site_config` SET param_value = '1.17.52' where param_name = 'version_db' and param_value = '1.17.51'"); setChange("ALTER TABLE `tt_site_config` CHANGE `updated` `modified` datetime default NULL"); setChange("UPDATE `tt_site_config` SET param_value = '1.17.53', modified = now() where param_name = 'version_db' and param_value = '1.17.52'"); + setChange("ALTER TABLE `tt_log` ADD `created` datetime default NULL AFTER `paid`"); + setChange("ALTER TABLE `tt_log` ADD `created_ip` varchar(45) default NULL AFTER `created`"); + setChange("ALTER TABLE `tt_log` ADD `created_by` int(11) default NULL AFTER `created_ip`"); + setChange("ALTER TABLE `tt_log` ADD `modified` datetime default NULL AFTER `created_by`"); + setChange("ALTER TABLE `tt_log` ADD `modified_ip` varchar(45) default NULL AFTER `modified`"); + setChange("ALTER TABLE `tt_log` ADD `modified_by` int(11) default NULL AFTER `modified_ip`"); + setChange("UPDATE `tt_site_config` SET param_value = '1.17.56', modified = now() where param_name = 'version_db' and param_value = '1.17.53'"); } if ($_POST["cleanup"]) { @@ -870,7 +877,7 @@ if ($_POST) {

DB Install

-
Create database structure (v1.17.53) + Create database structure (v1.17.56)
(applies only to new installations, do not execute when updating)
@@ -910,8 +917,8 @@ if ($_POST) {

Update database structure (v1.17.44 to v1.17.53)Update database structure (v1.17.44 to v1.17.56)
diff --git a/mysql.sql b/mysql.sql index 07b17a29..ad4516b1 100644 --- a/mysql.sql +++ b/mysql.sql @@ -84,10 +84,10 @@ CREATE TABLE `tt_users` ( `rate` float(6,2) NOT NULL default '0.00', # default hourly rate `email` varchar(100) default NULL, # user email `created` datetime default NULL, # creation timestamp - `created_ip` varchar(45) default NULL, # creation ip + `created_ip` varchar(45) default NULL, # creator ip `created_by` int(11) default NULL, # creator user_id (null for self) `modified` datetime default NULL, # modification timestamp - `modified_ip` varchar(45) default NULL, # modification ip + `modified_ip` varchar(45) default NULL, # modifier ip `modified_by` int(11) default NULL, # modifier user_id `accessed` datetime default NULL, # last access timestamp `accessed_ip` varchar(45) default NULL, # last access ip @@ -183,6 +183,12 @@ CREATE TABLE `tt_log` ( `comment` text, # user provided comment for time record `billable` tinyint(4) default 0, # whether the record is billable or not `paid` tinyint(4) default 0, # whether the record is paid + `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, # time record status PRIMARY KEY (`id`) ); @@ -434,4 +440,4 @@ CREATE TABLE `tt_site_config` ( PRIMARY KEY (`param_name`) ); -INSERT INTO `tt_site_config` (`param_name`, `param_value`, `created`) VALUES ('version_db', '1.17.53', now()); # TODO: change when structure changes. +INSERT INTO `tt_site_config` (`param_name`, `param_value`, `created`) VALUES ('version_db', '1.17.56', now()); # TODO: change when structure changes. -- 2.20.1