Comments
2 comments
-
Hi @ggeier2
Thank you for reaching out on the Redgate forums
Sorry that the formatting didn't come out as expected - I took your html code and believe the difference you outlined is the indentation of code within the parentheses?
create table dbo.some_table ( some_id int identity(1, 1) primary key clustered ,some_name varchar(128) ,some_other_name varchar(1000) )
---
create table dbo.aligned_table ( some_id int identity(1, 1) primary key clustered ,some_name varchar(128) ,some_other_name varchar(1000) )
If so it may be a case of editing the following setting in your styleSchema (DDL) > Indent parentheses contents
Example below with your sample code indented & un-indented
Is this the alignment change you were looking to make?
-
Thank you for the response. What I was looking for was a little different. I took a screenshot so it can be seen easier:
Add comment
Please sign in to leave a comment.
I'd like for it to format it as:
edit: Not sure why the code isn't formatting properly after I published the question.