chatbot/Chatbot.Api.Domain.Data/Scripts/03.BotSession ExternalId up...

4 lines
188 B
SQL

if exists(select top 1 1 from sys.columns where name = 'ExternalId' and object_id = object_id('BotSession'))
begin
alter table BotSession alter column ExternalId varchar(100) not null
end