Alignment

edited March 13, 2018 4:38PM in SQL Prompt
Hi Redgate Team,

SQL Prompt formats the following code like this:
[code]
CREATE TABLE #SYNTOSA_ELEMENTS
(
    LEVEL int NOT NULL
,    ELEMENT_UID uniqueidentifier NOT NULL
,    ELEMENT_UID_PARENT uniqueidentifier NULL
,    ISACTIVE bit NOT NULL
,    MODULE_UID uniqueidentifier NOT NULL
,    TYPE_UID uniqueidentifier NOT NULL
,    ELEMENT_NAME nvarchar(150) NOT NULL UNIQUE
                                            (
                                                [LEVEL]
                                            , [MODULE_UID]
                                            , [TYPE_UID]
                                            , [ELEMENT_NAME]
                                            , [ELEMENT_UID_PARENT]
                                            )
);
[/code]

The Level column name in the UNIQUE Constraint is not aligned with the names below.

Would be nice if you fix this - thanks!

Regards

Torsten

Version 9.1.2.4363 





Sign In or Register to comment.