From ab677303ffb717d49a7a9822c14066b4fdd50dd3 Mon Sep 17 00:00:00 2001 From: Andrew Arnott Date: Tue, 2 Feb 2010 21:15:00 -0800 Subject: [PATCH] The build is adding a bit to the SQL script. --- projecttemplates/RelyingPartyLogic/CreateDatabase.sql | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/projecttemplates/RelyingPartyLogic/CreateDatabase.sql b/projecttemplates/RelyingPartyLogic/CreateDatabase.sql index dd7a69ef3e..0fa1b43b4f 100644 --- a/projecttemplates/RelyingPartyLogic/CreateDatabase.sql +++ b/projecttemplates/RelyingPartyLogic/CreateDatabase.sql @@ -710,6 +710,10 @@ GO PRINT N'Checking existing data against newly created constraints'; +GO +USE [$(DatabaseName)]; + + GO ALTER TABLE [dbo].[AuthenticationToken] WITH CHECK CHECK CONSTRAINT [FK_AuthenticationToken_User];