Repository: incubator-guacamole-client Updated Branches: refs/heads/master edc6d7900 -> a5cfccb09
GUACAMOLE-95: Minor change to postgresql schema. Fixes saving sessions to history. Project: http://git-wip-us.apache.org/repos/asf/incubator-guacamole-client/repo Commit: http://git-wip-us.apache.org/repos/asf/incubator-guacamole-client/commit/0fd1a3ae Tree: http://git-wip-us.apache.org/repos/asf/incubator-guacamole-client/tree/0fd1a3ae Diff: http://git-wip-us.apache.org/repos/asf/incubator-guacamole-client/diff/0fd1a3ae Branch: refs/heads/master Commit: 0fd1a3aea620702fde33b8fc2149ab37499bf55a Parents: edc6d79 Author: ljruiten <[email protected]> Authored: Fri Aug 26 18:20:09 2016 +0200 Committer: ljruiten <[email protected]> Committed: Fri Aug 26 19:20:48 2016 +0200 ---------------------------------------------------------------------- .../guacamole-auth-jdbc-postgresql/schema/001-create-schema.sql | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/incubator-guacamole-client/blob/0fd1a3ae/extensions/guacamole-auth-jdbc/modules/guacamole-auth-jdbc-postgresql/schema/001-create-schema.sql ---------------------------------------------------------------------- diff --git a/extensions/guacamole-auth-jdbc/modules/guacamole-auth-jdbc-postgresql/schema/001-create-schema.sql b/extensions/guacamole-auth-jdbc/modules/guacamole-auth-jdbc-postgresql/schema/001-create-schema.sql index 2720e37..4f780c1 100644 --- a/extensions/guacamole-auth-jdbc/modules/guacamole-auth-jdbc-postgresql/schema/001-create-schema.sql +++ b/extensions/guacamole-auth-jdbc/modules/guacamole-auth-jdbc-postgresql/schema/001-create-schema.sql @@ -359,7 +359,7 @@ CREATE TABLE guacamole_connection_history ( connection_id integer DEFAULT NULL, connection_name varchar(128) NOT NULL, sharing_profile_id integer DEFAULT NULL, - sharing_profile_name varchar(128) NOT NULL, + sharing_profile_name varchar(128) DEFAULT NULL, start_date timestamptz NOT NULL, end_date timestamptz DEFAULT NULL,
