Work in progress on new roles.
authorNik Okuntseff <support@anuko.com>
Wed, 21 Feb 2018 15:00:16 +0000 (15:00 +0000)
committerNik Okuntseff <support@anuko.com>
Wed, 21 Feb 2018 15:00:16 +0000 (15:00 +0000)
WEB-INF/templates/footer.tpl
dbinstall.php
mysql.sql

index f4b18e7..11ff373 100644 (file)
@@ -12,7 +12,7 @@
       <br>
       <table cellspacing="0" cellpadding="4" width="100%" border="0">
         <tr>
-          <td align="center">&nbsp;Anuko Time Tracker 1.17.27.4005 | Copyright &copy; <a href="https://www.anuko.com/lp/tt_3.htm" target="_blank">Anuko</a> |
+          <td align="center">&nbsp;Anuko Time Tracker 1.17.28.4006 | Copyright &copy; <a href="https://www.anuko.com/lp/tt_3.htm" target="_blank">Anuko</a> |
             <a href="https://www.anuko.com/lp/tt_4.htm" target="_blank">{$i18n.footer.credits}</a> |
             <a href="https://www.anuko.com/lp/tt_5.htm" target="_blank">{$i18n.footer.license}</a> |
             <a href="https://www.anuko.com/lp/tt_7.htm" target="_blank">{$i18n.footer.improve}</a>
index 5c02031..41864c4 100755 (executable)
@@ -709,7 +709,7 @@ if ($_POST) {
     setChange("ALTER TABLE `tt_log` ADD `paid` tinyint(4) NULL default '0' AFTER `billable`");
   }
 
-  if ($_POST["convert11400to11727"]) {
+  if ($_POST["convert11400to11728"]) {
     setChange("ALTER TABLE `tt_teams` DROP `address`");
     setChange("ALTER TABLE `tt_fav_reports` ADD `report_spec` text default NULL AFTER `user_id`");
     setChange("ALTER TABLE `tt_fav_reports` ADD `paid_status` tinyint(4) default NULL AFTER `invoice`");
@@ -729,6 +729,8 @@ if ($_POST) {
     setChange("ALTER TABLE `tt_teams` MODIFY `timestamp` timestamp default CURRENT_TIMESTAMP");
     setChange("ALTER TABLE `tt_log` MODIFY `timestamp` timestamp default CURRENT_TIMESTAMP");
     setChange("ALTER TABLE `tt_tmp_refs` MODIFY `timestamp` timestamp default CURRENT_TIMESTAMP");
+    setChange("CREATE TABLE `tt_roles` (`id` int(11) NOT NULL auto_increment, `team_id` int(11) NOT NULL, `name` varchar(80) default NULL, `rank` int(11) default 0, `rights` text default NULL, `status` tinyint(4) default 1, PRIMARY KEY  (`id`))");
+    setChange("create unique index role_idx on tt_roles(team_id, rank, status)");
   }
 
   if ($_POST["cleanup"]) {
@@ -773,7 +775,7 @@ if ($_POST) {
 <h2>DB Install</h2>
 <table width="80%" border="1" cellpadding="10" cellspacing="0">
   <tr>
-    <td width="80%"><b>Create database structure (v1.17.27)</b>
+    <td width="80%"><b>Create database structure (v1.17.28)</b>
     <br>(applies only to new installations, do not execute when updating)</br></td><td><input type="submit" name="crstructure" value="Create"></td>
   </tr>
 </table>
@@ -809,8 +811,8 @@ if ($_POST) {
     <td><input type="submit" name="convert1600to11400" value="Update"><br></td>
   </tr>
   <tr valign="top">
-    <td>Update database structure (v1.14 to v1.17.27)</td>
-    <td><input type="submit" name="convert11400to11727" value="Update"><br></td>
+    <td>Update database structure (v1.14 to v1.17.28)</td>
+    <td><input type="submit" name="convert11400to11728" value="Update"><br></td>
   </tr>
 </table>
 
index 06f705c..3c52aef 100644 (file)
--- a/mysql.sql
+++ b/mysql.sql
@@ -380,3 +380,24 @@ CREATE TABLE `tt_monthly_quotas` (
 
 ALTER TABLE `tt_monthly_quotas`
   ADD CONSTRAINT `FK_TT_TEAM_CONSTRAING` FOREIGN KEY (`team_id`) REFERENCES `tt_teams` (`id`) ON DELETE CASCADE ON UPDATE CASCADE;
+
+
+#
+# Structure for table tt_roles. This table stores customized team roles.
+#
+CREATE TABLE `tt_roles` (
+  `id` int(11) NOT NULL auto_increment, # role id
+  `team_id` int(11) NOT NULL,           # team id
+  `name` varchar(80) default NULL,      # role name - may be used to rename standard roles
+  `rank` int(11) default 0,             # Role rank and identifier in comparison with other roles,
+                                        # used to determine what "lesser roles" are
+                                        # and also identifies a role within a team, used as role in tt_users.
+  `rights` text default NULL,           # Comma-separated list of rights assigned to a role.
+                                        # NULL here for predefined roles (4, 16, 68, 324 - manager)
+                                        # means a hard-coded set of default access rights.
+  `status` tinyint(4) default 1,        # role status
+  PRIMARY KEY  (`id`)
+);
+
+# Create an index that guarantees unique active and inactive role ranks per team.
+create unique index role_idx on tt_roles(team_id, rank, status);