GUACAMOLE-317: Add "failover_only" column to database schema for Guacamole connections.

This commit is contained in:
Michael Jumper
2017-06-06 13:29:22 -07:00
parent eb087ae290
commit 3c553b965c
7 changed files with 75 additions and 13 deletions

View File

@@ -65,9 +65,9 @@ CREATE TABLE `guacamole_connection` (
`max_connections` int(11),
`max_connections_per_user` int(11),
-- Connection weight
-- Load-balancing behavior
`connection_weight` int(11),
`failover_only` boolean NOT NULL DEFAULT 0,
PRIMARY KEY (`connection_id`),
UNIQUE KEY `connection_name_parent` (`connection_name`, `parent_id`),