updated sql upgrader class to reflect recent changes, fixes #1501

This commit is contained in:
Faryan Rezagholi
2019-07-01 00:41:58 +02:00
parent fe4266a41e
commit cabd712b75

View File

@@ -28,7 +28,9 @@ ALTER TABLE tblCons
ADD RedirectClipboard bit NOT NULL DEFAULT 0,
InheritRedirectClipboard bit NOT NULL DEFAULT 0,
VmId varchar NOT NULL DEFAULT 0,
UseVmId bit NOT NULL DEFAULT 0;
UseVmId bit NOT NULL DEFAULT 0,
InheritVmId bit NOT NULL DEFAULT 0,
InheritUseVmId bit NOT NULL DEFAULT 0;
UPDATE tblRoot
SET ConfVersion='2.7'";
var dbCommand = _databaseConnector.DbCommand(sqlText);