You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The ntext, text, and image data types will be removed in a future version of SQL Server. Avoid using these data types in new development work, and plan to modify applications that currently use them. Use nvarchar(max), varchar(max), and varbinary(max) instead.
The DDL we provided for Inbox and Outbox uses NText to store body and header
https://learn.microsoft.com/en-us/sql/t-sql/data-types/ntext-text-and-image-transact-sql
The DDL we provided for Inbox and Outbox uses NText to store body and header
Inbox
https://github.com/BrighterCommand/Brighter/blob/master/src/Paramore.Brighter.Inbox.MsSql/DDL%20Scripts/MSSQL/Inbox.sql
https://github.com/BrighterCommand/Brighter/blob/master/src/Paramore.Brighter.Inbox.MsSql/SqlInboxBuilder.cs#L38
OutBox
https://github.com/BrighterCommand/Brighter/blob/master/src/Paramore.Brighter.Outbox.MsSql/DDL_SCRIPTS/MSSQL/Outbox.sql
https://github.com/BrighterCommand/Brighter/blob/master/src/Paramore.Brighter.Outbox.MsSql/SqlOutboxBuilder.cs
The text was updated successfully, but these errors were encountered: