Hopefully, updated the SQL database to include the new DNS 2012 provider

This commit is contained in:
Konstantin 2013-11-28 22:01:20 +01:00
parent 147da8fde6
commit b4e891fb7e

View file

@ -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