WELCOME TO THE COMMUNITY
find what you are looking for or ask a new question
Home > Forum > Latest posts > Installation

Installation

Hey,
anyone have any idea why the problem appeared?
Version installation: current -> 2023.1.3.76 target -> 2023.1.3.118

In changelogs there was information about changes as to the columns in the AdminWFEventLogs table.

Last query from profiler:

IF EXISTS(SELECT * FROM sys.columns WHERE Name = N'WEL_Details_Deprecated' AND Object_ID = Object_ID(N'dbo.[AdminWFEventLogs]'))
BEGIN
EXEC('
IF NOT EXISTS (SELECT * FROM dbo.AdminWFEventLogs WHERE WEL_Details_Deprecated is not null)
BEGIN
ALTER TABLE dbo.[AdminWFEventLogs]
DROP COLUMN WEL_Details_Deprecated
END
')
END