This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
DECLARE @SCHEMA_NAME nvarchar(32), | |
@SCHEMA_ID int, | |
@SCHEMA_TABLE_NAME nvarchar(100), | |
@TARGET_SCHEMA_VERSION int, | |
@CREATE_MESSAGE_TABLE_DML nvarchar(1000), | |
@MESSAGE_TABLE_NAME nvarchar(100), | |
@MESSAGE_TABLE_COUNT int; | |
SET @SCHEMA_NAME = 'SignalR'; -- replaced from C# | |
SET @SCHEMA_TABLE_NAME = 'Schema'; -- replaced from C# |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
DECLARE @SCHEMA_NAME nvarchar(32), | |
@SCHEMA_ID int, | |
@SCHEMA_TABLE_NAME nvarchar(100), | |
@TARGET_SCHEMA_VERSION int, | |
@CREATE_MESSAGE_TABLE_DML nvarchar(1000), | |
@MESSAGE_TABLE_NAME nvarchar(100), | |
@MESSAGE_TABLE_COUNT int; | |
SET @SCHEMA_NAME = 'SignalR'; -- replaced from C# | |
SET @SCHEMA_TABLE_NAME = 'Schema'; -- replaced from C# |