Hopefully, updated the SQL database to include the new DNS 2012 provider
This commit is contained in:
parent
147da8fde6
commit
b4e891fb7e
1 changed files with 9 additions and 0 deletions
|
@ -2607,3 +2607,12 @@ GO
|
||||||
-- CRM
|
-- CRM
|
||||||
|
|
||||||
UPDATE Providers SET EditorControl = 'CRM2011' Where ProviderID = 1201;
|
UPDATE Providers SET EditorControl = 'CRM2011' Where ProviderID = 1201;
|
||||||
|
|
||||||
|
-- DNS.2013
|
||||||
|
|
||||||
|
IF NOT EXISTS ( SELECT * FROM [dbo].[Providers] WHERE [ProviderID] = 410 )
|
||||||
|
BEGIN
|
||||||
|
INSERT [dbo].[Providers] ([ProviderID], [GroupID], [ProviderName], [DisplayName], [ProviderType], [EditorControl], [DisableAutoDiscovery]) VALUES
|
||||||
|
(410, 7, N'MSDNS.2012', N'Microsoft DNS Server 2012+', N'WebsitePanel.Providers.DNS.MsDNS2012, WebsitePanel.Providers.DNS.MsDNS2012', N'MSDNS', NULL)
|
||||||
|
END
|
||||||
|
GO
|
Loading…
Add table
Add a link
Reference in a new issue