Repository: incubator-guacamole-client Updated Branches: refs/heads/master fafcbf0dd -> 7325b7e9c
GUACAMOLE-5: Fix syntax error in mysql create script by adding missing comma. 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/75946923 Tree: http://git-wip-us.apache.org/repos/asf/incubator-guacamole-client/tree/75946923 Diff: http://git-wip-us.apache.org/repos/asf/incubator-guacamole-client/diff/75946923 Branch: refs/heads/master Commit: 759469231d6500e5ed02bde451fa42a5a304e966 Parents: fafcbf0 Author: James Muehlner <[email protected]> Authored: Tue Jul 26 11:48:34 2016 -0700 Committer: James Muehlner <[email protected]> Committed: Tue Jul 26 11:48:34 2016 -0700 ---------------------------------------------------------------------- .../modules/guacamole-auth-jdbc-mysql/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/75946923/extensions/guacamole-auth-jdbc/modules/guacamole-auth-jdbc-mysql/schema/001-create-schema.sql ---------------------------------------------------------------------- diff --git a/extensions/guacamole-auth-jdbc/modules/guacamole-auth-jdbc-mysql/schema/001-create-schema.sql b/extensions/guacamole-auth-jdbc/modules/guacamole-auth-jdbc-mysql/schema/001-create-schema.sql index 47dfe3b..e1b19b0 100644 --- a/extensions/guacamole-auth-jdbc/modules/guacamole-auth-jdbc-mysql/schema/001-create-schema.sql +++ b/extensions/guacamole-auth-jdbc/modules/guacamole-auth-jdbc-mysql/schema/001-create-schema.sql @@ -327,7 +327,7 @@ CREATE TABLE `guacamole_connection_history` ( CONSTRAINT `guacamole_connection_history_ibfk_2` FOREIGN KEY (`connection_id`) - REFERENCES `guacamole_connection` (`connection_id`) ON DELETE SET NULL + REFERENCES `guacamole_connection` (`connection_id`) ON DELETE SET NULL, CONSTRAINT `guacamole_connection_history_ibfk_3` FOREIGN KEY (`sharing_profile_id`)
