Skip to content
This repository was archived by the owner on Dec 24, 2022. It is now read-only.

Commit 9d186e5

Browse files
committed
Update ColumnSchema.cs
1 parent ef6c4f0 commit 9d186e5

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/ServiceStack.OrmLite/ColumnSchema.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ public override string ToString()
3737
var sql = StringBuilderCache.Allocate();
3838

3939
sql.Append($"{ColumnName.PadRight(18, ' ')} {DataTypeName}");
40-
if (NumericPrecision > 0 || NumericScale > 0)
40+
if (NumericPrecision > 0)
4141
{
4242
sql.Append("(");
4343
sql.Append(NumericPrecision);

0 commit comments

Comments
 (0)