How can I get SQLComplete to format Table Check constraints?
I'm using SQLComplete version 2025.1.134 and have the following table definition:
CREATE TABLE MyTable
(
[Column1] INT NULL
,[Column2] INT NULL
,CONSTRAINT [CK_MyTable]
CHECK (
(
(__Universe2HybridBenchmarkId IS NOT NULL AND __Universe2AccountBenchmarkId IS NULL)
OR
(__Universe2HybridBenchmarkId IS NULL AND __Universe2AccountBenchmarkId IS NOT NULL)
)
)
)
GO
My issue is with the CHECK CONSTRAINT - When I use SQLComplete to format it, it removes the tab-padding that makes it easier for me to read it.
Where in my SQLComplete Formatting Profile / In SQL complete would I be able to set the formatting I want for this?