Skip to content

Commit

Permalink
test commit
Browse files Browse the repository at this point in the history
  • Loading branch information
joc-a committed Aug 25, 2023
1 parent 701a012 commit 4fa29d1
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
3 changes: 3 additions & 0 deletions detekt/detekt-config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,9 @@ formatting:
NoMultipleSpaces:
active: true
autoCorrect: false
SpacingAroundUnaryOperator:
active: true
autoCorrect: true

style:
MaxLineLength:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -269,7 +269,7 @@ open class SQLServerDialect : VendorDialect(dialectName, SQLServerDataTypeProvid
if (column.columnType.nullable ||
(defaultValue != null && column.defaultValueFun == null && ! currentDialect.isAllowedAsColumnDefault(defaultValue))
) {
append(" NULL")
append(" NULL") // test
} else if (!isPKColumn) {
append(" NOT NULL")
}
Expand Down

0 comments on commit 4fa29d1

Please sign in to comment.