mirror of
https://dev.azure.com/tstanciu94/Chatbot/_git/Chatbot
synced 2025-06-21 20:48:22 +03:00
4 lines
188 B
SQL
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 |