Merging with main
This commit is contained in:
parent
ddc94cb44c
commit
07efbd695e
1 changed files with 3 additions and 11 deletions
|
@ -1,6 +1,4 @@
|
||||||
USE [${install.database}]
|
|
||||||
GO
|
|
||||||
|
|
||||||
-- update database version
|
-- update database version
|
||||||
DECLARE @build_version nvarchar(10), @build_date datetime
|
DECLARE @build_version nvarchar(10), @build_date datetime
|
||||||
SET @build_version = N'${release.version}'
|
SET @build_version = N'${release.version}'
|
||||||
|
@ -5451,7 +5449,8 @@ CREATE TABLE RDSServers
|
||||||
Name NVARCHAR(255),
|
Name NVARCHAR(255),
|
||||||
FqdName NVARCHAR(255),
|
FqdName NVARCHAR(255),
|
||||||
Description NVARCHAR(255),
|
Description NVARCHAR(255),
|
||||||
RDSCollectionId INT/* FOREIGN KEY REFERENCES RDSCollection (ID)*/
|
RDSCollectionId INT,
|
||||||
|
ConnectionEnabled BIT NOT NULL DEFAULT(1)
|
||||||
)
|
)
|
||||||
GO
|
GO
|
||||||
|
|
||||||
|
@ -6746,13 +6745,6 @@ exec sp_executesql @sql, N'@StartRow int, @MaximumRows int, @PackageID int, @Fil
|
||||||
|
|
||||||
RETURN
|
RETURN
|
||||||
|
|
||||||
IF NOT EXISTS(SELECT * FROM sys.columns
|
|
||||||
WHERE [name] = N'ConnectionEnabled' AND [object_id] = OBJECT_ID(N'RDSServers'))
|
|
||||||
BEGIN
|
|
||||||
ALTER TABLE [RDSServers]
|
|
||||||
ADD ConnectionEnabled BIT NOT NULL DEFAULT(1)
|
|
||||||
END
|
|
||||||
|
|
||||||
GO
|
GO
|
||||||
|
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue