Support Succinct Syntax for NCIs bound to a single column ### AVOID ```sql create table dbo.foo ( bar int ); go create index ix_baz on dbo.foo ( bar ); go ``` ### PREFER ```sql create table dbo.foo ( bar int index ix_baz ); go ```