Ticket #263: Clarified permissioning.

This commit is contained in:
James Muehlner
2013-07-29 23:10:56 -07:00
parent dae8307b3f
commit d5c49ff287
7 changed files with 376 additions and 22 deletions

View File

@@ -8,6 +8,8 @@ CREATE TABLE `guacamole_connection_group` (
`connection_group_id` int(11) NOT NULL AUTO_INCREMENT,
`parent_group_id` int(11),
`connection_group_name` varchar(128) NOT NULL,
`type` enum('ORGANIZATIONAL',
'BALANCING') NOT NULL DEFAULT 'ORGANIZATIONAL',
PRIMARY KEY (`connection_group_id`),
UNIQUE KEY `connection_group_name` (`connection_group_name`),
@@ -112,7 +114,6 @@ CREATE TABLE `guacamole_connection_group_permission` (
`user_id` int(11) NOT NULL,
`connection_group_id` int(11) NOT NULL,
`permission` enum('READ',
'EXECUTE',
'UPDATE',
'DELETE',
'ADMINISTER') NOT NULL,