The core infrastructure backend (API, database, Docker, etc).
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

12 lines
283 B

IF COL_LENGTH('[dbo].[Event]', 'GrantedServiceAccountId') IS NULL
BEGIN
ALTER TABLE [dbo].[Event]
ADD [GrantedServiceAccountId] UNIQUEIDENTIFIER NULL;
END
GO
IF OBJECT_ID('[dbo].[EventView]', 'V') IS NOT NULL
BEGIN
EXECUTE sp_refreshview N'[dbo].[EventView]'
END
GO