Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mRemoteNG/mRemoteNG.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorVest <Vest@users.noreply.github.com>2021-12-25 13:31:05 +0300
committerVest <Vest@users.noreply.github.com>2021-12-25 13:31:05 +0300
commitf8eec94b045ba98f80979cff9a45775b6158c7a6 (patch)
tree6975b822b3b411e11f697cd1c59b450348102b20
parentff9cff8f44278fc93a480698a3c58229afe967fc (diff)
Extended the field [RenderingEngine] from 10 chars to 16.
This is not the full fix of issue #2057, because the scripts are not "migration" scripts.
-rw-r--r--mRemoteNGDocumentation/mssql_db_setup.sql2
-rw-r--r--mRemoteNGDocumentation/mysql_db_setup.sql2
2 files changed, 2 insertions, 2 deletions
diff --git a/mRemoteNGDocumentation/mssql_db_setup.sql b/mRemoteNGDocumentation/mssql_db_setup.sql
index bb322367..018ef67e 100644
--- a/mRemoteNGDocumentation/mssql_db_setup.sql
+++ b/mRemoteNGDocumentation/mssql_db_setup.sql
@@ -69,7 +69,7 @@ CREATE TABLE [dbo].[tblCons] (
[RedirectPrinters] bit NOT NULL,
[RedirectSmartCards] bit NOT NULL,
[RedirectSound] varchar(64) NOT NULL,
- [RenderingEngine] varchar(10),
+ [RenderingEngine] varchar(16),
[Resolution] varchar(32) NOT NULL,
[SSHOptions] varchar(1024) NOT NULL,
[SSHTunnelConnectionName] varchar(128) NOT NULL,
diff --git a/mRemoteNGDocumentation/mysql_db_setup.sql b/mRemoteNGDocumentation/mysql_db_setup.sql
index 69c20b1a..3c2e8af8 100644
--- a/mRemoteNGDocumentation/mysql_db_setup.sql
+++ b/mRemoteNGDocumentation/mysql_db_setup.sql
@@ -70,7 +70,7 @@ CREATE TABLE `tblCons` (
`RedirectPrinters` tinyint(1) NOT NULL,
`RedirectSmartCards` tinyint(1) NOT NULL,
`RedirectSound` varchar(64) NOT NULL,
- `RenderingEngine` varchar(10) DEFAULT NULL,
+ `RenderingEngine` varchar(16) DEFAULT NULL,
`Resolution` varchar(32) NOT NULL,
`SSHOptions` varchar(1024) NOT NULL,
`SSHTunnelConnectionName` varchar(128) NOT NULL,