mirror of
https://github.com/mRemoteNG/mRemoteNG.git
synced 2026-02-17 22:11:48 +08:00
updated db init scripts for RdpVersion property
This commit is contained in:
@@ -138,6 +138,8 @@ CREATE TABLE [dbo].[tblCons] (
|
||||
[InheritRedirectClipboard] [bit] NOT NULL DEFAULT 0,
|
||||
[RedirectAudioCapture] [bit] NOT NULL DEFAULT 0,
|
||||
[InheritRedirectAudioCapture] [bit] NOT NULL DEFAULT 0
|
||||
[RdpVersion] [varchar] (10) NULL,
|
||||
[InheritRdpVersion] [bit] NOT NULL DEFAULT 0
|
||||
) ON [PRIMARY]
|
||||
GO
|
||||
|
||||
|
||||
@@ -141,6 +141,8 @@ CREATE TABLE `tblCons` (
|
||||
`InheritRedirectClipboard` tinyint(1) NOT NULL DEFAULT 0,
|
||||
`RedirectAudioCapture` bit NOT NULL DEFAULT 0,
|
||||
`InheritRedirectAudioCapture` bit NOT NULL DEFAULT 0,
|
||||
`RdpVersion` varchar(10) DEFAULT NULL,
|
||||
`InheritRdpVersion` bit NOT NULL DEFAULT 0,
|
||||
PRIMARY KEY (`ID`)
|
||||
) ENGINE=InnoDB AUTO_INCREMENT=3324 DEFAULT CHARSET=latin1;
|
||||
/*!40101 SET character_set_client = @saved_cs_client */;
|
||||
|
||||
Reference in New Issue
Block a user